Searched refs:pkalg (Results 1 - 4 of 4) sorted by relevance

/macosx-10.10/OpenSSH-189/openssh/
H A Dauth2-hostbased.c61 char *pkalg, *cuser, *chost, *service; local
71 pkalg = packet_get_string(&alen);
77 debug("userauth_hostbased: cuser %s chost %s pkalg %s slen %d",
78 cuser, chost, pkalg, slen);
86 pktype = key_type_from_name(pkalg);
90 "public key algorithm: %s", pkalg);
95 error("userauth_hostbased: cannot decode key: %s", pkalg);
112 buffer_put_string(&b, pkalg, alen);
131 xfree(pkalg);
H A Dssh-keysign.c75 char *pkalg, *p; local
108 pkalg = buffer_get_string(&b, NULL);
111 pktype = key_type_from_name(pkalg);
118 xfree(pkalg);
H A Dauth2-pubkey.c78 char *pkalg; local
91 /* no explicit pkalg given */
95 /* so we have to extract the pkalg from the pkblob */
96 pkalg = buffer_get_string(&b, &alen);
99 pkalg = packet_get_string(&alen);
102 pktype = key_type_from_name(pkalg);
106 pkalg);
111 error("userauth_pubkey: cannot decode key: %s", pkalg);
140 buffer_put_cstring(&b, pkalg);
155 debug("test whether pkalg/pkblo
[all...]
H A Dsshconnect2.c625 char *pkalg, *fp; local
636 pkalg = buffer_get_string(&b, &alen);
639 pkalg = packet_get_string(&alen);
644 debug("Server accepts key: pkalg %s blen %u", pkalg, blen);
646 if ((pktype = key_type_from_name(pkalg)) == KEY_UNSPEC) {
647 debug("unknown pkalg %s", pkalg);
651 debug("no key from blob. pkalg %s", pkalg);
1808 char *chost, *pkalg, *p; local
[all...]

Completed in 123 milliseconds