Searched refs:pkblob (Results 1 – 4 of 4) sorted by relevance
/external/openssh/ |
D | auth2-hostbased.c | 67 u_char *pkblob, *sig; in userauth_hostbased() local 73 (r = sshpkt_get_string(ssh, &pkblob, &blen)) != 0 || in userauth_hostbased() 92 if ((r = sshkey_from_blob(pkblob, blen, &key)) != 0) { in userauth_hostbased() 138 (r = sshbuf_put_string(b, pkblob, blen)) != 0 || in userauth_hostbased() 163 free(pkblob); in userauth_hostbased()
|
D | ssh-keysign.c | 70 u_char type, *pkblob; in valid_request() local 114 (r = sshbuf_get_string(b, &pkblob, &blen)) != 0) in valid_request() 120 else if ((r = sshkey_from_blob(pkblob, blen, &key)) != 0) { in valid_request() 126 free(pkblob); in valid_request()
|
D | auth2-pubkey.c | 97 u_char *pkblob = NULL, *sig = NULL, have_sig; in userauth_pubkey() local 106 (r = sshpkt_get_string(ssh, &pkblob, &blen)) != 0) in userauth_pubkey() 113 if ((pkbuf = sshbuf_from(pkblob, blen)) == NULL) in userauth_pubkey() 131 if ((r = sshkey_from_blob(pkblob, blen, &key)) != 0) { in userauth_pubkey() 206 (r = sshbuf_put_string(b, pkblob, blen)) != 0) in userauth_pubkey() 270 (r = sshpkt_put_string(ssh, pkblob, blen)) != 0 || in userauth_pubkey() 289 free(pkblob); in userauth_pubkey()
|
D | sshconnect2.c | 649 u_char *pkblob = NULL; in input_userauth_pk_ok() local 656 (r = sshpkt_get_string(ssh, &pkblob, &blen)) != 0 || in input_userauth_pk_ok() 664 if ((r = sshkey_from_blob(pkblob, blen, &key)) != 0) { in input_userauth_pk_ok() 702 free(pkblob); in input_userauth_pk_ok()
|