c++ code for signing data with rsa evp

1.7k Views Asked by At

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:

  1. The error file is empty
  2. 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?

1

There are 1 best solutions below

0
On

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

      BIO *sgerr = NULL;
  const char szPath[MAX_FILE_NAME_SIZE] = "sgerr.pem";
  sgerr = BIO_new_file(szPath,"wb");

  cout<<"i'm in sign digest"<<endl;
  //create private key
  EVP_PKEY *priv_key = NULL;
  priv_key = EVP_PKEY_new();
  if (1 == EVP_PKEY_set1_RSA(priv_key,m_caKeyPairs))
  {
      int keytype = 0;
      keytype = EVP_PKEY_type(priv_key->type);
      cout<<"key type is "<<keytype<<endl;
         BIO *out = NULL;
         out = BIO_new_file("skey.pem","wb");

         PEM_write_bio_PrivateKey(
             out,                  /* write the key to the file we've opened */
             priv_key,               /* our key from earlier */
             EVP_des_ede3_cbc(), /* default cipher for encrypting the key on disk */
             (unsigned char *)"replace_me",       /* passphrase required for decrypting the key on disk */
             10,                 /* length of the passphrase string */
             NULL,               /* callback for requesting a password */
             NULL                /* data to pass to the callback */
         );
      cout<<"Successful key private created"<<endl;
  }
  else
  {
      cout<<"private key is bad"<<endl;
  }

EVP_MD_CTX *mdctx = NULL;
mdctx = EVP_MD_CTX_create();
size_t signlen = NULL;
//Initialize the DigestSign operation
if (1 == EVP_DigestSignInit(mdctx, NULL, EVP_sha1(), NULL, priv_key))
{
    cout<<"initialize correct"<<endl;
}
else
{
    cout<<"something wrong"<<endl;
}
//update with the message
if (1 == EVP_DigestSignUpdate(mdctx, m_digestData,(DATA_SIZE + RSA_KEY_SIZE)))
{
    cout<<"digest created successfully"<<endl;
    cout<<"digest is "<<endl;
    for (int i = 0; i < DIGEST_SIZE; i++)
    {
        printf("0x%.2x ", m_digest[i]);
    }
    cout<<endl;
}
else
{
    cout<<"something wrong"<<endl;
}
//Finalise the DigestSign operation determine the sign length
if (1 == EVP_DigestSignFinal(mdctx, NULL, &signlen))
{
    cout<<"sign length is "<<signlen<<endl;
}
else
{
    cout<<"something wrong"<<endl;
}

if (1 == EVP_DigestSignFinal(mdctx, m_signedDigest, &signlen))
{
    cout<<"sign successfully created"<<endl;
    cout<<"signed digest is " <<endl;
    for(int i=0;i<RSA_KEY_SIZE;i++)
    {
        printf("0x%.2x ", m_signedDigest[i]);
    }
        cout<<endl;
}
else
{
    cout<<"something wrong"<<endl;
}

note i have some attributes in the class that i used like m_signedDigest[] and so on