[BACK]Return to rsa.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / openssl

Diff for /src/usr.bin/openssl/rsa.c between version 1.5 and 1.6

version 1.5, 2015/09/11 14:30:23 version 1.6, 2015/10/10 22:28:51
Line 268 
Line 268 
         BIO *out = NULL;          BIO *out = NULL;
         char *passin = NULL, *passout = NULL;          char *passin = NULL, *passout = NULL;
   
           if (single_execution) {
                   if (pledge("stdio rpath wpath cpath", NULL) == -1)
                           perror("pledge");
           }
   
         memset(&rsa_config, 0, sizeof(rsa_config));          memset(&rsa_config, 0, sizeof(rsa_config));
         rsa_config.pvk_encr = 2;          rsa_config.pvk_encr = 2;
         rsa_config.informat = FORMAT_PEM;          rsa_config.informat = FORMAT_PEM;

Legend:
Removed from v.1.5  
changed lines
  Added in v.1.6