Home
last modified time | relevance | path

Searched refs:sshbuf_get_bignum1 (Results 1 – 10 of 10) sorted by relevance

/external/openssh/
Dssh-agent.c314 (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 …]
Dbufbn.c56 if ((ret = sshbuf_get_bignum1(buffer, value)) != 0) { in buffer_get_bignum_ret()
Dssh-keyscan.c219 (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()
Dsshbuf-getput-crypto.c49 sshbuf_get_bignum1(struct sshbuf *buf, BIGNUM *v) in sshbuf_get_bignum1() function
Dauthfd.c214 (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()
Dsshbuf.h224 int sshbuf_get_bignum1(struct sshbuf *buf, BIGNUM *v);
Dsshkey.c3637 (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()
Dpacket.c2937 return sshbuf_get_bignum1(ssh->state->incoming_packet, v); in sshpkt_get_bignum1()
/external/openssh/regress/unittests/sshbuf/
Dtest_sshbuf_getput_crypto.c186 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()
Dtest_sshbuf_getput_fuzz.c58 sshbuf_get_bignum1(p1, bn); in attempt_parse_blob()