Home
last modified time | relevance | path

Searched refs:valid_before (Results 1 – 8 of 8) sorted by relevance

/external/openssh/
Dauth-options.c325 uint64_t valid_before; in sshauthopt_parse() local
386 if (parse_absolute_time(opt, &valid_before) != 0 || in sshauthopt_parse()
387 valid_before == 0) { in sshauthopt_parse()
393 if (ret->valid_before == 0 || in sshauthopt_parse()
394 valid_before < ret->valid_before) in sshauthopt_parse()
395 ret->valid_before = valid_before; in sshauthopt_parse()
585 if (primary->valid_before != 0) in sshauthopt_merge()
586 ret->valid_before = primary->valid_before; in sshauthopt_merge()
587 if (additional->valid_before != 0 && in sshauthopt_merge()
588 additional->valid_before < ret->valid_before) in sshauthopt_merge()
[all …]
Dauth-options.h44 uint64_t valid_before; member
Dauth.c1021 opts->valid_before == 0 ? "" : "expires", in auth_log_authopts()
1048 if (opts->valid_before != 0) { in auth_log_authopts()
1049 format_absolute_time(opts->valid_before, buf, sizeof(buf)); in auth_log_authopts()
1119 if (opts->valid_before && now > 0 && in auth_authorise_keyopts()
1120 opts->valid_before < (uint64_t)now) { in auth_authorise_keyopts()
1121 format_absolute_time(opts->valid_before, buf, sizeof(buf)); in auth_authorise_keyopts()
Dsshkey.h115 u_int64_t valid_after, valid_before; member
Dsshkey.c1790 to->valid_before = from->valid_before; in sshkey_cert_copy()
2213 (ret = sshbuf_get_u64(b, &key->cert->valid_before)) != 0 || in cert_parse()
3018 (ret = sshbuf_put_u64(cert, k->cert->valid_before)) != 0 || in sshkey_certify_custom()
3104 if ((u_int64_t)now >= k->cert->valid_before) { in sshkey_cert_check_authority()
3139 cert->valid_before == 0xffffffffffffffffULL) in sshkey_format_cert_validity()
3149 if (cert->valid_before != 0xffffffffffffffffULL) { in sshkey_format_cert_validity()
3151 tt = cert->valid_before > INT_MAX ? in sshkey_format_cert_validity()
3152 INT_MAX : cert->valid_before; in sshkey_format_cert_validity()
3159 else if (cert->valid_before == 0xffffffffffffffffULL) in sshkey_format_cert_validity()
Dssh-keygen.c1813 public->cert->valid_before = cert_valid_to; in do_ca_sign()
/external/cpu_features/src/
Dstring_view.c159 const bool valid_before = in CpuFeatures_StringView_HasWord() local
163 if (valid_before && valid_after) return true; in CpuFeatures_StringView_HasWord()
/external/openssh/regress/unittests/sshkey/
Dtest_sshkey.c428 k1->cert->valid_before = (u_int64_t)-1; in sshkey_tests()