Lines Matching refs:pkalg
64 char *pkalg, *cuser, *chost; in userauth_hostbased() local
70 if ((r = sshpkt_get_cstring(ssh, &pkalg, &alen)) != 0 || in userauth_hostbased()
78 cuser, chost, pkalg, slen); in userauth_hostbased()
83 pktype = sshkey_type_from_name(pkalg); in userauth_hostbased()
87 pkalg); in userauth_hostbased()
95 error_f("cannot decode key: %s", pkalg); in userauth_hostbased()
103 if (match_pattern_list(pkalg, options.hostbased_accepted_algos, 0) != 1) { in userauth_hostbased()
105 "HostbasedAcceptedAlgorithms", pkalg); in userauth_hostbased()
134 (r = sshbuf_put_string(b, pkalg, alen)) != 0 || in userauth_hostbased()
151 sshbuf_ptr(b), sshbuf_len(b), pkalg, ssh->compat, NULL)) == 0) in userauth_hostbased()
159 free(pkalg); in userauth_hostbased()