Lines Matching full:days
130 " -days arg - How long till expiry of a signed certificate - def 30 days\n",
157 static int sign (X509 *x, EVP_PKEY *pkey,int days,int clrext, const EVP_MD *digest,
162 char *serial, int create ,int days, int clrext,
197 int x509req=0,days=DEF_DAYS,modulus=0,pubkey=0;
285 else if (strcmp(*argv,"-days") == 0)
288 days=atoi(*(++argv));
289 if (days == 0)
291 BIO_printf(STDout,"bad number of days\n");
655 X509_time_adj_ex(X509_get_notAfter(x),days, 0, NULL);
967 if (!sign(x,Upkey,days,clrext,digest,
985 CAserial,CA_createserial,days, clrext,
1151 int days, int clrext, CONF *conf, char *section,
1194 if (X509_time_adj_ex(X509_get_notAfter(x),days, 0, NULL) == NULL)
1254 static int sign(X509 *x, EVP_PKEY *pkey, int days, int clrext, const EVP_MD *digest,
1270 /* 28 days to be certified */
1272 if (X509_gmtime_adj(X509_get_notAfter(x),(long)60*60*24*days) == NULL)