python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
Get EVP_PKEY from EVP_PKEY_CTX
I have a function that takes as parameter an EVP_PKEY_CTX*. I cannot modify the function signature in any way. Is there any way to get the EVP_PKEY object from the EVP_PKEY_CTX ?
My code would look so...
Luc Techer
Votes: 0
Answers: 0
Delphi Android app: Could not load SSL Library
I am developing an Android 32-bit app in Delphi. I need to use OpenSSL libraries in my app in order to connect to an MQTT broker.
I am using OpenSSL 1.0.2t armeabi-v7a libcrypto.a and libssl.a static ...
Miguel Mar
Votes: 0
Answers: 1
How to statically link libssl and libcrypto when using cygwin?
cmake_minimum_required(VERSION 3.17)
project(test)
set(CMAKE_CXX_STANDARD 17)
add_executable(test main.cpp)
target_link_libraries(test ssl crypto)
when use the CMakeLists.txt above, it can link th...
today man
Votes: 0
Answers: 1
Security vulnerability reported as backdoor when using OpenSSL's librypto.a library
My C code uses librypto.a library to link to the compiled source code at the final stage for implementing RSA algorithm.
When a vulnerability scan was done, it comes back with a YARA signature match f...
Sundar
Votes: 0
Answers: 0