Home
last modified time | relevance | path

Searched refs:enddate (Results 1 – 7 of 7) 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$/);
84 if ($date ge $startdate && $date le $enddate) {
91 if ($date ge $startdate && $date le $enddate) {
[all …]
/freebsd/crypto/openssl/apps/
H A Dca.c99 const char *enddate,
285 char *prog, *startdate = NULL, *enddate = NULL; in ca_main() local
361 enddate = opt_arg(); in ca_main()
911 if (enddate == NULL) { in ca_main()
913 if (enddate == NULL) in ca_main()
916 if (enddate != NULL && !ASN1_TIME_set_string_X509(NULL, enddate)) { in ca_main()
928 if (enddate == NULL && days == 0) { in ca_main()
1011 enddate, days, batch, extensions, conf, verbose, in ca_main()
1385 const char *enddate, in certify() argument
1713 if (!set_cert_times(ret, startdate, enddate, days)) in do_body()
[all …]
H A Dx509.c290 int enddate = 0; in x509_main() local
512 enddate = ++num; in x509_main()
562 enddate = ++num; in x509_main()
993 } else if (i == enddate) { in x509_main()
/freebsd/crypto/openssl/apps/include/
H A Dapps.h82 int set_cert_times(X509 *x, const char *startdate, const char *enddate,
/freebsd/crypto/openssl/doc/man1/
H A Dopenssl-ca.pod.in32 [B<-enddate> I<date>]
225 =item B<-enddate> I<date>
505 The same as the B<-enddate> option. Either this option or
812 B<-enddate> and B<-days>) and CRL last/next update time (specified by
H A Dopenssl-x509.pod.in34 [B<-enddate>]
255 =item B<-enddate>
/freebsd/crypto/openssl/apps/lib/
H A Dapps.c3208 int set_cert_times(X509 *x, const char *startdate, const char *enddate, in set_cert_times() argument
3218 if (enddate == NULL) { in set_cert_times()
3222 } else if (!ASN1_TIME_set_string_X509(X509_getm_notAfter(x), enddate)) { in set_cert_times()