Lines Matching refs:sigtype
2000 char *sigtype = NULL; in sshkey_get_sigtype() local
2006 if ((r = sshbuf_get_cstring(b, &sigtype, NULL)) != 0) in sshkey_get_sigtype()
2010 *sigtypep = sigtype; in sshkey_get_sigtype()
2011 sigtype = NULL; in sshkey_get_sigtype()
2015 free(sigtype); in sshkey_get_sigtype()
2073 char *sigtype = NULL; in sshkey_check_sigtype() local
2080 if ((r = sshkey_get_sigtype(sig, siglen, &sigtype)) != 0) in sshkey_check_sigtype()
2082 r = strcmp(expected_alg, sigtype) == 0; in sshkey_check_sigtype()
2083 free(sigtype); in sshkey_check_sigtype()
2183 char *sigtype = NULL; in sshkey_certify_custom() local
2259 if ((ret = sshkey_get_sigtype(sig_blob, sig_len, &sigtype)) != 0) in sshkey_certify_custom()
2261 if (alg != NULL && strcmp(alg, sigtype) != 0) { in sshkey_certify_custom()
2266 k->cert->signature_type = sigtype; in sshkey_certify_custom()
2267 sigtype = NULL; in sshkey_certify_custom()
2278 free(sigtype); in sshkey_certify_custom()