Searched refs:pkblob (Results 1 – 4 of 4) sorted by relevance
| /NextBSD/crypto/openssh/ |
| HD | auth2-hostbased.c | 62 u_char *pkblob, *sig; in userauth_hostbased() local 72 pkblob = packet_get_string(&blen); in userauth_hostbased() 93 key = key_from_blob(pkblob, blen); in userauth_hostbased() 119 buffer_put_string(&b, pkblob, blen); in userauth_hostbased() 142 free(pkblob); in userauth_hostbased()
|
| HD | ssh-keysign.c | 67 u_char *pkblob; in valid_request() local 103 pkblob = buffer_get_string(&b, &blen); in valid_request() 108 else if ((key = key_from_blob(pkblob, blen)) == NULL) in valid_request() 113 free(pkblob); in valid_request()
|
| HD | auth2-pubkey.c | 79 u_char *pkblob, *sig; in userauth_pubkey() local 92 pkblob = packet_get_string(&blen); in userauth_pubkey() 94 buffer_append(&b, pkblob, blen); in userauth_pubkey() 100 pkblob = packet_get_string(&blen); in userauth_pubkey() 109 key = key_from_blob(pkblob, blen); in userauth_pubkey() 152 buffer_put_string(&b, pkblob, blen); in userauth_pubkey() 181 packet_put_string(pkblob, blen); in userauth_pubkey() 194 free(pkblob); in userauth_pubkey()
|
| HD | sshconnect2.c | 548 u_char *pkblob; in input_userauth_pk_ok() local 555 pkblob = packet_get_string(&blen); in input_userauth_pk_ok() 557 buffer_append(&b, pkblob, blen); in input_userauth_pk_ok() 562 pkblob = packet_get_string(&blen); in input_userauth_pk_ok() 572 if ((key = key_from_blob(pkblob, blen)) == NULL) { in input_userauth_pk_ok() 601 free(pkblob); in input_userauth_pk_ok()
|