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

Diff for /src/usr.bin/openssl/ecparam.c between version 1.13 and 1.14

version 1.13, 2015/09/11 14:30:23 version 1.14, 2015/10/10 22:28:51
Line 259 
Line 259 
         BIO *in = NULL, *out = NULL;          BIO *in = NULL, *out = NULL;
         int i, ret = 1;          int i, ret = 1;
   
           if (single_execution) {
                   if (pledge("stdio rpath wpath cpath", NULL) == -1)
                           perror("pledge");
           }
   
         memset(&ecparam_config, 0, sizeof(ecparam_config));          memset(&ecparam_config, 0, sizeof(ecparam_config));
         ecparam_config.asn1_flag = OPENSSL_EC_NAMED_CURVE;          ecparam_config.asn1_flag = OPENSSL_EC_NAMED_CURVE;
         ecparam_config.form = POINT_CONVERSION_UNCOMPRESSED;          ecparam_config.form = POINT_CONVERSION_UNCOMPRESSED;

Legend:
Removed from v.1.13  
changed lines
  Added in v.1.14