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()
129 buffer_put_string(&b, pkblob, blen); in userauth_hostbased()
152 free(pkblob); in userauth_hostbased()
Dauth2-pubkey.c80 u_char *pkblob, *sig; in userauth_pubkey() local
93 pkblob = packet_get_string(&blen); in userauth_pubkey()
95 buffer_append(&b, pkblob, blen); in userauth_pubkey()
101 pkblob = packet_get_string(&blen); in userauth_pubkey()
110 key = key_from_blob(pkblob, blen); in userauth_pubkey()
164 buffer_put_string(&b, pkblob, blen); in userauth_pubkey()
197 packet_put_string(pkblob, blen); in userauth_pubkey()
210 free(pkblob); in userauth_pubkey()
Dssh-keysign.c73 u_char type, *pkblob; in valid_request() local
117 (r = sshbuf_get_string(b, &pkblob, &blen)) != 0) in valid_request()
123 else if ((r = sshkey_from_blob(pkblob, blen, &key)) != 0) { in valid_request()
129 free(pkblob); in valid_request()
Dsshconnect2.c565 u_char *pkblob; in input_userauth_pk_ok() local
572 pkblob = packet_get_string(&blen); in input_userauth_pk_ok()
574 buffer_append(&b, pkblob, blen); in input_userauth_pk_ok()
579 pkblob = packet_get_string(&blen); in input_userauth_pk_ok()
589 if ((key = key_from_blob(pkblob, blen)) == NULL) { in input_userauth_pk_ok()
620 free(pkblob); in input_userauth_pk_ok()