Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to run below codes for encryption it should work, but there is nothing in encryptfile. There is also an error when running if

 (EVP_PKEY_CTX_set_rsa_padding(ctx, RSA_PKCS1_OAEP_PADDING) <= 0)

Any suggestion is appreciated.

 #include <stdio.h>

 #include <openssl/evp.h>

 #include <openssl/rsa.h>



EVP_PKEY* ReadPubKey_FromFile(char* filename)
{
  FILE* fp = fopen(filename, "r");
  EVP_PKEY* key = NULL;
  PEM_read_PUBKEY(fp, &key, NULL, NULL);
  fclose(fp);

  return key;
}



int do_encrypt(char* filename)

 {

    EVP_PKEY_CTX *ctx;

    unsigned char *out, *in="abcdefghijk";

    size_t outlen, inlen=12;

    EVP_PKEY *key;

    int i;

    FILE *fpout;


    OpenSSL_add_all_algorithms();

    key = ReadPubKey_FromFile("public.key");    

    ctx = EVP_PKEY_CTX_new(key, NULL);


    if (!ctx)

        /* Error occurred */

    if (EVP_PKEY_encrypt_init(ctx) <= 0)

        /* Error */

           printf("Error1\n");

    if (EVP_PKEY_CTX_set_rsa_padding(ctx, RSA_PKCS1_OAEP_PADDING) <= 0)

        /* Error */

           printf("Error2\n");

 /* Determine buffer length */

    if (EVP_PKEY_encrypt(ctx, NULL, &outlen, in, inlen) <= 0)

        /* Error */

        {printf("Error3\n");}


    out = OPENSSL_malloc(outlen);



    if (!out)

        /* malloc failure */

           {printf("Error4\n");}

    if (EVP_PKEY_encrypt(ctx, out, &outlen, in, inlen) <= 0)

        /* Error */

        {printf("Error5\n");}

        printf("Ready to output a encrypiton file...\n");

 /* Encrypted data is outlen bytes written to buffer out */

        fpout = fopen("encryptfile", "wb"); 

        fwrite(out, 1, outlen, fpout);

        fclose(fpout);
        for(i=1;i<outlen;i++)
          {
            printf("out is");
            printf("%s\n", out[i]);
      }

        EVP_PKEY_CTX_free(ctx);

        return 0;

 }



int main(int argc, char *argv[])

{

   do_encrypt();

   return 0;

}
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.