openssl
openssl copied to clipboard
C.RAND_bytes is missing
I need the random bytes from openssl package but it seem not to be implemented. What do i need to put into shim.h and shim.c to get the binding working? Thank for your help~
The purpose of shim.h and shim.c is to allow interoperability with different OpenSSL versions. If the call you're looking to expose is the same across all the versions that are supported, you can just ignore them and call it directly in the go file.
Is there a way to call RAND_bytes() without forking the openssl package?