Searched refs:sshbuf_get_bignum1 (Results 1 – 10 of 10) sorted by relevance
/external/openssh/ |
D | ssh-agent.c | 314 (r = sshbuf_get_bignum1(e->request, key->rsa->e)) != 0 || in process_authentication_challenge1() 315 (r = sshbuf_get_bignum1(e->request, key->rsa->n)) != 0 || in process_authentication_challenge1() 316 (r = sshbuf_get_bignum1(e->request, challenge))) in process_authentication_challenge1() 463 (r = sshbuf_get_bignum1(e->request, key->rsa->e)) != 0 || in process_remove_identity() 464 (r = sshbuf_get_bignum1(e->request, key->rsa->n)) != 0) in process_remove_identity() 574 (r = sshbuf_get_bignum1(m, k->rsa->n)) != 0 || in agent_decode_rsa1() 575 (r = sshbuf_get_bignum1(m, k->rsa->e)) != 0 || in agent_decode_rsa1() 576 (r = sshbuf_get_bignum1(m, k->rsa->d)) != 0 || in agent_decode_rsa1() 577 (r = sshbuf_get_bignum1(m, k->rsa->iqmp)) != 0 || in agent_decode_rsa1() 579 (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 | 219 (r = sshbuf_get_bignum1(msg, NULL)) != 0 || in keygrab_ssh1() 220 (r = sshbuf_get_bignum1(msg, NULL)) != 0 || in keygrab_ssh1() 223 (r = sshbuf_get_bignum1(msg, rsa->rsa->e)) != 0 || in keygrab_ssh1() 224 (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 | 224 int sshbuf_get_bignum1(struct sshbuf *buf, BIGNUM *v);
|
D | sshkey.c | 3637 (r = sshbuf_get_bignum1(copy, pub->rsa->n)) != 0 || in sshkey_parse_public_rsa1_fileblob() 3638 (r = sshbuf_get_bignum1(copy, pub->rsa->e)) != 0) in sshkey_parse_public_rsa1_fileblob() 3707 (r = sshbuf_get_bignum1(copy, prv->rsa->n)) != 0 || in sshkey_parse_private_rsa1() 3708 (r = sshbuf_get_bignum1(copy, prv->rsa->e)) != 0 || in sshkey_parse_private_rsa1() 3739 if ((r = sshbuf_get_bignum1(decrypted, prv->rsa->d)) != 0 || in sshkey_parse_private_rsa1() 3740 (r = sshbuf_get_bignum1(decrypted, prv->rsa->iqmp)) != 0 || in sshkey_parse_private_rsa1() 3741 (r = sshbuf_get_bignum1(decrypted, prv->rsa->q)) != 0 || in sshkey_parse_private_rsa1() 3742 (r = sshbuf_get_bignum1(decrypted, prv->rsa->p)) != 0) in sshkey_parse_private_rsa1()
|
D | packet.c | 2937 return sshbuf_get_bignum1(ssh->state->incoming_packet, v); in sshpkt_get_bignum1()
|
/external/openssh/regress/unittests/sshbuf/ |
D | test_sshbuf_getput_crypto.c | 186 ASSERT_INT_EQ(sshbuf_get_bignum1(p1, bn2), 0); in sshbuf_getput_crypto_tests() 202 r = sshbuf_get_bignum1(p1, bn2); in sshbuf_getput_crypto_tests() 218 r = sshbuf_get_bignum1(p1, bn2); in sshbuf_getput_crypto_tests() 235 ASSERT_INT_EQ(sshbuf_get_bignum1(p1, bn2), 0); in sshbuf_getput_crypto_tests() 251 r = sshbuf_get_bignum1(p1, bn2); in sshbuf_getput_crypto_tests()
|
D | test_sshbuf_getput_fuzz.c | 58 sshbuf_get_bignum1(p1, bn); in attempt_parse_blob()
|