OpenSSL Sign and Verify in C with RAW EC generated Keys
问题 I generate my EC private key as random number and my EC public key as the multiplication of the generator for the random number. Now I would to use these keys to sign and verify a message, but the operation about the verification fails. Do you have any hint to solve this problem? I'm using OpenSSL 1.0.0 for some constraints. I cannot switch the new one. #include <openssl/ec.h> #include <openssl/rand.h> #include <openssl/bn.h> #include <openssl/sha.h> #include <openssl/evp.h> #include <openssl