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

/external/openssh/
H A Dauth2-hostbased.c64 u_char *pkblob, *sig; local
74 pkblob = packet_get_string(&blen);
95 key = key_from_blob(pkblob, blen);
129 buffer_put_string(&b, pkblob, blen);
152 free(pkblob);
H A Dssh-keysign.c73 u_char type, *pkblob; local
117 (r = sshbuf_get_string(b, &pkblob, &blen)) != 0)
123 else if ((r = sshkey_from_blob(pkblob, blen, &key)) != 0) {
129 free(pkblob);
H A Dauth2-pubkey.c80 u_char *pkblob, *sig; local
93 pkblob = packet_get_string(&blen);
95 buffer_append(&b, pkblob, blen);
96 /* so we have to extract the pkalg from the pkblob */
101 pkblob = packet_get_string(&blen);
110 key = key_from_blob(pkblob, blen);
164 buffer_put_string(&b, pkblob, blen);
183 debug("test whether pkalg/pkblob are acceptable");
197 packet_put_string(pkblob, blen);
210 free(pkblob);
[all...]
H A Dsshconnect2.c565 u_char *pkblob; local
572 pkblob = packet_get_string(&blen);
574 buffer_append(&b, pkblob, blen);
579 pkblob = packet_get_string(&blen);
589 if ((key = key_from_blob(pkblob, blen)) == NULL) {
620 free(pkblob);

Completed in 124 milliseconds