Home
last modified time | relevance | path

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

/external/openssh/
Dauth2-hostbased.c64 u_char *pkblob, *sig; in userauth_hostbased() local
74 pkblob = packet_get_string(&blen); in userauth_hostbased()
95 key = key_from_blob(pkblob, blen); in userauth_hostbased()
128 buffer_put_string(&b, pkblob, blen); in userauth_hostbased()
151 free(pkblob); in userauth_hostbased()
Dssh-keysign.c76 u_char type, *pkblob; in valid_request() local
120 (r = sshbuf_get_string(b, &pkblob, &blen)) != 0) in valid_request()
126 else if ((r = sshkey_from_blob(pkblob, blen, &key)) != 0) { in valid_request()
132 free(pkblob); in valid_request()
Dauth2-pubkey.c83 u_char *pkblob, *sig; in userauth_pubkey() local
96 pkblob = packet_get_string(&blen); in userauth_pubkey()
98 buffer_append(&b, pkblob, blen); in userauth_pubkey()
104 pkblob = packet_get_string(&blen); in userauth_pubkey()
113 key = key_from_blob(pkblob, blen); in userauth_pubkey()
170 buffer_put_string(&b, pkblob, blen); in userauth_pubkey()
204 packet_put_string(pkblob, blen); in userauth_pubkey()
217 free(pkblob); in userauth_pubkey()
Dsshconnect2.c583 u_char *pkblob; in input_userauth_pk_ok() local
590 pkblob = packet_get_string(&blen); in input_userauth_pk_ok()
592 buffer_append(&b, pkblob, blen); in input_userauth_pk_ok()
597 pkblob = packet_get_string(&blen); in input_userauth_pk_ok()
607 if ((key = key_from_blob(pkblob, blen)) == NULL) { in input_userauth_pk_ok()
638 free(pkblob); in input_userauth_pk_ok()