Lines Matching refs:pkalg
65 char *pkalg, *cuser, *chost; in userauth_hostbased() local
71 if ((r = sshpkt_get_cstring(ssh, &pkalg, &alen)) != 0 || in userauth_hostbased()
79 cuser, chost, pkalg, slen); in userauth_hostbased()
84 pktype = sshkey_type_from_name(pkalg); in userauth_hostbased()
88 pkalg); in userauth_hostbased()
96 error_f("cannot decode key: %s", pkalg); in userauth_hostbased()
104 if (match_pattern_list(pkalg, options.hostbased_accepted_algos, 0) != 1) { in userauth_hostbased()
106 "HostbasedAcceptedAlgorithms", pkalg); in userauth_hostbased()
135 (r = sshbuf_put_string(b, pkalg, alen)) != 0 || in userauth_hostbased()
152 sshbuf_ptr(b), sshbuf_len(b), pkalg, ssh->compat, NULL) == 0) in userauth_hostbased()
160 free(pkalg); in userauth_hostbased()