Lines Matching refs:pkalg
95 char *pkalg = NULL, *userstyle = NULL, *key_s = NULL, *ca_s = NULL; in userauth_pubkey() local
106 (r = sshpkt_get_cstring(ssh, &pkalg, NULL)) != 0 || in userauth_pubkey()
133 have_sig ? "attempting" : "querying", pkalg, keystring); in userauth_pubkey()
138 pktype = sshkey_type_from_name(pkalg); in userauth_pubkey()
141 verbose_f("unsupported public key algorithm: %s", pkalg); in userauth_pubkey()
149 error_f("cannot decode key: %s", pkalg); in userauth_pubkey()
161 if (match_pattern_list(pkalg, options.pubkey_accepted_algos, 0) != 1) { in userauth_pubkey()
163 "PubkeyAcceptedAlgorithms", pkalg); in userauth_pubkey()
184 method, pkalg, key_s, in userauth_pubkey()
212 (r = sshbuf_put_cstring(b, pkalg)) != 0 || in userauth_pubkey()
226 (ssh->compat & SSH_BUG_SIGTYPE) == 0 ? pkalg : NULL, in userauth_pubkey()
267 debug_f("%s test pkalg %s pkblob %s%s%s", method, pkalg, key_s, in userauth_pubkey()
288 (r = sshpkt_put_cstring(ssh, pkalg)) != 0 || in userauth_pubkey()
301 debug2_f("authenticated %d pkalg %s", authenticated, pkalg); in userauth_pubkey()
308 free(pkalg); in userauth_pubkey()