Dear all i made c++ code to sign a message m_digestData[DATA_SIZE + RSA_KEY_SIZE]. These message originally consist of some data of length of 13 byte and encrypted shared key of length RSA_KEY_SIZE 256 byte (2048 bit). I have RSA m_caKeyPairs structure only so i store the private key first in priv_key then use the sign function i have tried to make an error file to store the error using function ERR_print_errors(). The code
OpenSSL_add_all_ciphers();
OpenSSL_add_all_digests();
//create private key
EVP_PKEY *priv_key = NULL;
priv_key = EVP_PKEY_new();
EVP_PKEY_set1_RSA(priv_key,m_caKeyPairs);
cout<<"i'm in sign digest"<<endl;
BIO *sgerr = NULL;
const char szPath[MAX_FILE_NAME_SIZE] = "sgerr.pem";
sgerr = BIO_new_file(szPath,"wb");
unsigned int *len = NULL;
unsigned char *sign = NULL;
EVP_MD_CTX *ctx = NULL;
ctx = EVP_MD_CTX_create();
const EVP_MD *md = EVP_get_digestbyname("SHA1");
EVP_SignInit(ctx, md);
EVP_SignUpdate(ctx, m_digestData, (DATA_SIZE + RSA_KEY_SIZE));
sign = (unsigned char *)OPENSSL_malloc(EVP_PKEY_size(priv_key));
EVP_SignFinal(ctx, sign, len, priv_key);
for(int i=0;i<(*len);i++)
{
m_signedDigest[i] = *(sign + i);
}
ERR_print_errors(sgerr);
BIO_free(sgerr);
cout<<"signed digest is "<<endl;
for (int i = 0; i < RSA_KEY_SIZE; i++)
{
printf("0x%.2x ", m_signedDigest[i]);
}
My problem is:
- The error file is empty
- I have error while debugging the code:
No source available for "EVP_SignFinal() at 0xb7ed6c59" for the function EVP_SignFinal(ctx, sign, len, priv_key);
Even i made reservation for memory first with the key size
Any more ideas to solve this problem?
the problem was in the sign length it was pointer just make it as below and pass it to method as a reference here is the new code
note i have some attributes in the class that i used like m_signedDigest[] and so on