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);
128 buffer_put_string(&b, pkblob, blen);
151 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.c83 u_char *pkblob, *sig; local
96 pkblob = packet_get_string(&blen);
98 buffer_append(&b, pkblob, blen);
99 /* so we have to extract the pkalg from the pkblob */
104 pkblob = packet_get_string(&blen);
113 key = key_from_blob(pkblob, blen);
167 buffer_put_string(&b, pkblob, blen);
186 debug("test whether pkalg/pkblob are acceptable");
200 packet_put_string(pkblob, blen);
213 free(pkblob);
[all...]
H A Dsshconnect2.c558 u_char *pkblob; local
565 pkblob = packet_get_string(&blen);
567 buffer_append(&b, pkblob, blen);
572 pkblob = packet_get_string(&blen);
582 if ((key = key_from_blob(pkblob, blen)) == NULL) {
613 free(pkblob);

Completed in 262 milliseconds