Searched refs:valid_before (Results 1 – 10 of 10) sorted by relevance
| /freebsd/crypto/openssh/ |
| H A D | auth-options.c | 328 uint64_t valid_before; in sshauthopt_parse() local 392 if (parse_absolute_time(opt, &valid_before) != 0 || in sshauthopt_parse() 393 valid_before == 0) { in sshauthopt_parse() 399 if (ret->valid_before == 0 || in sshauthopt_parse() 400 valid_before < ret->valid_before) in sshauthopt_parse() 401 ret->valid_before = valid_before; in sshauthopt_parse() 610 if (primary->valid_before != 0) in sshauthopt_merge() 611 ret->valid_before = primary->valid_before; in sshauthopt_merge() 612 if (additional->valid_before != 0 && in sshauthopt_merge() 613 additional->valid_before < ret->valid_before) in sshauthopt_merge() [all …]
|
| H A D | sshsig.c | 636 uint64_t valid_after, valid_before; member 680 if (ret->valid_before != 0) { in sshsigopt_parse() 686 if (parse_absolute_time(opt, &ret->valid_before) != 0 || in sshsigopt_parse() 687 ret->valid_before == 0) { in sshsigopt_parse() 712 if (ret->valid_after != 0 && ret->valid_before != 0 && in sshsigopt_parse() 713 ret->valid_before <= ret->valid_after) { in sshsigopt_parse() 967 if (sigopts->valid_before != 0 && in check_allowed_keys_line() 968 (uint64_t)verify_time > sigopts->valid_before) { in check_allowed_keys_line() 969 format_absolute_time(sigopts->valid_before, in check_allowed_keys_line()
|
| H A D | auth2-pubkeyfile.c | 67 if (opts->valid_before && now > 0 && in auth_authorise_keyopts() 68 opts->valid_before < (uint64_t)now) { in auth_authorise_keyopts() 69 format_absolute_time(opts->valid_before, buf, sizeof(buf)); in auth_authorise_keyopts()
|
| H A D | auth-options.h | 47 uint64_t valid_before; member
|
| H A D | auth.c | 706 opts->valid_before == 0 ? "" : "expires", in auth_log_authopts() 734 if (opts->valid_before != 0) { in auth_log_authopts() 735 format_absolute_time(opts->valid_before, buf, sizeof(buf)); in auth_log_authopts()
|
| H A D | ssh-add.c | 262 cert->cert->valid_before == 0xFFFFFFFFFFFFFFFFULL) in check_cert_lifetime() 266 if ((uint64_t)now > (cert->cert->valid_before + CERT_EXPIRY_GRACE)) in check_cert_lifetime() 268 n = (CERT_EXPIRY_GRACE + cert->cert->valid_before) - (uint64_t)now; in check_cert_lifetime()
|
| H A D | sshkey.c | 1548 to->valid_before = from->valid_before; in sshkey_cert_copy() 1874 (ret = sshbuf_get_u64(b, &key->cert->valid_before)) != 0 || in cert_parse() 2344 (ret = sshbuf_put_u64(cert, k->cert->valid_before)) != 0 || in sshkey_certify_custom() 2428 if (verify_time >= k->cert->valid_before) { in sshkey_cert_check_authority() 2502 cert->valid_before == 0xffffffffffffffffULL) in sshkey_format_cert_validity() 2507 if (cert->valid_before != 0xffffffffffffffffULL) in sshkey_format_cert_validity() 2508 format_absolute_time(cert->valid_before, to, sizeof(to)); in sshkey_format_cert_validity() 2512 else if (cert->valid_before == 0xffffffffffffffffULL) in sshkey_format_cert_validity()
|
| H A D | sshkey.h | 109 uint64_t valid_after, valid_before; member
|
| H A D | ssh-keygen.c | 1814 public->cert->valid_before = cert_valid_to; in do_ca_sign()
|
| /freebsd/crypto/openssh/regress/unittests/sshkey/ |
| H A D | test_sshkey.c | 470 k1->cert->valid_before = (uint64_t)-1; in sshkey_tests()
|