HomeSort by: relevance | last modified time | path
    Searched defs:not_after (Results 1 - 4 of 4) sorted by relevancy

  /src/external/bsd/wpa/dist/src/tls/
x509v3.h 61 os_time_t not_after; member in struct:x509_certificate
  /src/crypto/external/apache2/openssl/dist/apps/
req.c 174 { "not_after", OPT_NOT_AFTER, 's',
308 char *not_before = NULL, *not_after = NULL; local
475 not_after = opt_arg();
558 if (not_after != NULL)
559 BIO_printf(bio_err, "Warning: Ignoring -not_after without -x509; not generating a certificate\n");
867 else if (not_after != NULL)
868 BIO_printf(bio_err, "Warning: -not_after option overriding -days option\n");
869 if (!set_cert_times(new_x509, not_before, not_after, days, 1))
x509.c 198 { "not_after", OPT_NOT_AFTER, 's',
344 char *prog, *not_before = NULL, *not_after = NULL; local
445 not_after = opt_arg();
687 if (preserve_dates && not_after != NULL) {
688 BIO_printf(bio_err, "Cannot use -preserve_dates with -not_after option\n");
697 else if (not_after != NULL)
698 BIO_printf(bio_err, "Warning: -not_after option overriding -days option\n");
917 if (!preserve_dates && !set_cert_times(x, not_before, not_after, days, 1))
  /src/external/bsd/wpa/dist/src/crypto/
crypto_openssl.c 4444 const ASN1_TIME *not_before, *not_after; local
4457 not_after = X509_get0_notAfter(x509);
4458 if (!not_before || !not_after)
4461 res_after = X509_cmp_current_time(not_after);

Completed in 37 milliseconds