Searched refs:sshbuf_get_bignum1 (Results 1 – 8 of 8) sorted by relevance
/external/openssh/ |
D | ssh-agent.c | 307 (r = sshbuf_get_bignum1(e->request, key->rsa->e)) != 0 || in process_authentication_challenge1() 308 (r = sshbuf_get_bignum1(e->request, key->rsa->n)) != 0 || in process_authentication_challenge1() 309 (r = sshbuf_get_bignum1(e->request, challenge))) in process_authentication_challenge1() 444 (r = sshbuf_get_bignum1(e->request, key->rsa->e)) != 0 || in process_remove_identity() 445 (r = sshbuf_get_bignum1(e->request, key->rsa->n)) != 0) in process_remove_identity() 555 (r = sshbuf_get_bignum1(m, k->rsa->n)) != 0 || in agent_decode_rsa1() 556 (r = sshbuf_get_bignum1(m, k->rsa->e)) != 0 || in agent_decode_rsa1() 557 (r = sshbuf_get_bignum1(m, k->rsa->d)) != 0 || in agent_decode_rsa1() 558 (r = sshbuf_get_bignum1(m, k->rsa->iqmp)) != 0 || in agent_decode_rsa1() 560 (r = sshbuf_get_bignum1(m, k->rsa->q)) != 0 || /* p */ in agent_decode_rsa1() [all …]
|
D | bufbn.c | 56 if ((ret = sshbuf_get_bignum1(buffer, value)) != 0) { in buffer_get_bignum_ret()
|
D | ssh-keyscan.c | 218 (r = sshbuf_get_bignum1(msg, NULL)) != 0 || in keygrab_ssh1() 219 (r = sshbuf_get_bignum1(msg, NULL)) != 0 || in keygrab_ssh1() 222 (r = sshbuf_get_bignum1(msg, rsa->rsa->e)) != 0 || in keygrab_ssh1() 223 (r = sshbuf_get_bignum1(msg, rsa->rsa->n)) != 0) { in keygrab_ssh1()
|
D | sshbuf-getput-crypto.c | 49 sshbuf_get_bignum1(struct sshbuf *buf, BIGNUM *v) in sshbuf_get_bignum1() function
|
D | authfd.c | 214 (r = sshbuf_get_bignum1(ids, key->rsa->e)) != 0 || in deserialise_identity1() 215 (r = sshbuf_get_bignum1(ids, key->rsa->n)) != 0 || in deserialise_identity1()
|
D | sshbuf.h | 216 int sshbuf_get_bignum1(struct sshbuf *buf, BIGNUM *v);
|
D | sshkey.c | 3642 (r = sshbuf_get_bignum1(copy, pub->rsa->n)) != 0 || in sshkey_parse_public_rsa1_fileblob() 3643 (r = sshbuf_get_bignum1(copy, pub->rsa->e)) != 0) in sshkey_parse_public_rsa1_fileblob() 3715 (r = sshbuf_get_bignum1(copy, prv->rsa->n)) != 0 || in sshkey_parse_private_rsa1() 3716 (r = sshbuf_get_bignum1(copy, prv->rsa->e)) != 0 || in sshkey_parse_private_rsa1() 3751 if ((r = sshbuf_get_bignum1(decrypted, prv->rsa->d)) != 0 || in sshkey_parse_private_rsa1() 3752 (r = sshbuf_get_bignum1(decrypted, prv->rsa->iqmp)) != 0 || in sshkey_parse_private_rsa1() 3753 (r = sshbuf_get_bignum1(decrypted, prv->rsa->q)) != 0 || in sshkey_parse_private_rsa1() 3754 (r = sshbuf_get_bignum1(decrypted, prv->rsa->p)) != 0) in sshkey_parse_private_rsa1()
|
D | packet.c | 2810 return sshbuf_get_bignum1(ssh->state->incoming_packet, v); in sshpkt_get_bignum1()
|