Home
last modified time | relevance | path

Searched refs:enddate (Results 1 – 9 of 9) sorted by relevance

/freebsd/contrib/ntp/scripts/
H A Dsummary.in27 $enddate, $peer_dist_limit);
42 $enddate = $opts->{'end-date'};
43 if (!$enddate){
44 $enddate = `date -u +%Y%m%d`;
45 chomp $enddate;
46 --$enddate;
57 die "$enddate: invalid end date"
58 unless ($enddate =~ m/.*$log_date_pattern$/);
67 print STDERR "Creating summaries from $statsdir ($startdate to $enddate)\n";
84 if ($date ge $startdate && $date le $enddate) {
[all...]
/freebsd/crypto/openssl/test/recipes/
H A D25-test_x509.t567 my $enddate;
587 $enddate = strftime("%Y-%m-%d", gmtime(time + 99 * 24 * 60 * 60));
595 && get_not_after_date($b_cert) eq $enddate);
604 $enddate = strftime("%Y-%m-%d", gmtime(time + 30 * 24 * 60 * 60));
610 && get_not_after_date($b_cert) eq $enddate);
/freebsd/crypto/openssl/apps/
H A Dca.c101 const char *enddate,
113 const char *enddate, long days, int batch, const char *ext_sect,
122 const char *enddate, long days, const char *ext_sect, CONF *conf,
129 int email_dn, const char *startdate, const char *enddate, long days,
336 char *prog, *startdate = NULL, *enddate = NULL; in ca_main() local
417 enddate = opt_arg(); in ca_main()
925 if (enddate == NULL) in ca_main()
926 enddate = app_conf_try_string(conf, section, ENV_DEFAULT_ENDDATE); in ca_main()
931 if (enddate == NULL && days == 0) { in ca_main()
935 if (days != 0 && enddate != NULL) in ca_main()
[all …]
H A Dx509.c356 int enddate = 0; in x509_main() local
590 enddate = ++num; in x509_main()
640 enddate = ++num; in x509_main()
1092 } else if (i == enddate) { in x509_main()
/freebsd/crypto/openssl/apps/lib/
H A Dapps.c3299 int set_cert_times(X509 *x, const char *startdate, const char *enddate, in set_cert_times() argument
3304 if (!check_cert_time_string(enddate, "end date")) in set_cert_times()
3317 if (enddate != NULL && strcmp(enddate, "today") == 0) { in set_cert_times()
3318 enddate = NULL; in set_cert_times()
3321 if (enddate == NULL) { in set_cert_times()
3326 } else if (!ASN1_TIME_set_string_X509(X509_getm_notAfter(x), enddate)) { in set_cert_times()
/freebsd/crypto/openssl/apps/include/
H A Dapps.h87 int set_cert_times(X509 *x, const char *startdate, const char *enddate,
/freebsd/crypto/openssl/doc/man1/
H A Dopenssl-ca.pod.in34 [B<-enddate> I<date>]
240 =item B<-enddate> I<date>, B<-not_after> I<date>
527 The same as the B<-enddate> option. Either this option or
834 B<-enddate> and B<-days>) and CRL last/next update time (specified by
H A Dopenssl-x509.pod.in34 [B<-enddate>]
264 =item B<-enddate>
/freebsd/crypto/openssl/
H A DCHANGES.md829 `-startdate` and `-enddate` options.
19675 * Fix -startdate and -enddate (which was missing) arguments to 'ca'