Lines Matching refs:sigopts
739 struct sshsigopt *sigopts = NULL; in parse_principals_key_and_options() local
808 if ((sigopts = sshsigopt_parse(opts, path, linenum, &reason)) == NULL) { in parse_principals_key_and_options()
819 *sigoptsp = sigopts; in parse_principals_key_and_options()
820 sigopts = NULL; /* transferred */ in parse_principals_key_and_options()
829 sshsigopt_free(sigopts); in parse_principals_key_and_options()
899 struct sshsigopt *sigopts = NULL; in check_allowed_keys_line() local
907 principal, &principals, &found_key, &sigopts)) != 0) { in check_allowed_keys_line()
912 if (!sigopts->ca && sshkey_equal(found_key, sign_key)) { in check_allowed_keys_line()
915 } else if (sigopts->ca && sshkey_is_cert(sign_key) && in check_allowed_keys_line()
945 if (sigopts->namespaces != NULL && sig_namespace != NULL && in check_allowed_keys_line()
946 match_pattern_list(sig_namespace, sigopts->namespaces, 0) != 1) { in check_allowed_keys_line()
954 if (sigopts->valid_after != 0 && in check_allowed_keys_line()
955 (uint64_t)verify_time < sigopts->valid_after) { in check_allowed_keys_line()
956 format_absolute_time(sigopts->valid_after, in check_allowed_keys_line()
963 if (sigopts->valid_before != 0 && in check_allowed_keys_line()
964 (uint64_t)verify_time > sigopts->valid_before) { in check_allowed_keys_line()
965 format_absolute_time(sigopts->valid_before, in check_allowed_keys_line()
981 sshsigopt_free(sigopts); in check_allowed_keys_line()