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

Diff for /src/usr.bin/openssl/req.c between version 1.9 and 1.10

version 1.9, 2015/09/14 01:45:03 version 1.10, 2015/10/10 22:28:51
Line 176 
Line 176 
         const EVP_MD *md_alg = NULL, *digest = NULL;          const EVP_MD *md_alg = NULL, *digest = NULL;
         unsigned long chtype = MBSTRING_ASC;          unsigned long chtype = MBSTRING_ASC;
   
           if (single_execution) {
                   if (pledge("stdio rpath wpath cpath", NULL) == -1)
                           perror("pledge");
           }
   
         req_conf = NULL;          req_conf = NULL;
         cipher = EVP_aes_256_cbc();          cipher = EVP_aes_256_cbc();
         digest = EVP_sha256();          digest = EVP_sha256();

Legend:
Removed from v.1.9  
changed lines
  Added in v.1.10