Searched refs:sshbuf_put_bignum1 (Results 1 – 8 of 8) sorted by relevance
/external/openssh/ |
D | authfd.c | 403 (r = sshbuf_put_bignum1(msg, key->rsa->e)) != 0 || in ssh_decrypt_challenge() 404 (r = sshbuf_put_bignum1(msg, key->rsa->n)) != 0 || in ssh_decrypt_challenge() 405 (r = sshbuf_put_bignum1(msg, challenge)) != 0 || in ssh_decrypt_challenge() 505 (r = sshbuf_put_bignum1(b, key->n)) != 0 || in ssh_encode_identity_rsa1() 506 (r = sshbuf_put_bignum1(b, key->e)) != 0 || in ssh_encode_identity_rsa1() 507 (r = sshbuf_put_bignum1(b, key->d)) != 0 || in ssh_encode_identity_rsa1() 508 (r = sshbuf_put_bignum1(b, key->iqmp)) != 0 || in ssh_encode_identity_rsa1() 509 (r = sshbuf_put_bignum1(b, key->q)) != 0 || in ssh_encode_identity_rsa1() 510 (r = sshbuf_put_bignum1(b, key->p)) != 0 || in ssh_encode_identity_rsa1() 628 (r = sshbuf_put_bignum1(msg, key->rsa->e)) != 0 || in ssh_remove_identity() [all …]
|
D | bufbn.c | 37 if ((ret = sshbuf_put_bignum1(buffer, value)) != 0) { in buffer_put_bignum_ret()
|
D | sshbuf-getput-crypto.c | 169 sshbuf_put_bignum1(struct sshbuf *buf, const BIGNUM *v) in sshbuf_put_bignum1() function
|
D | sshbuf.h | 226 int sshbuf_put_bignum1(struct sshbuf *buf, const BIGNUM *v);
|
D | sshkey.c | 3450 if ((r = sshbuf_put_bignum1(buffer, key->rsa->d)) != 0 || in sshkey_private_rsa1_to_blob() 3451 (r = sshbuf_put_bignum1(buffer, key->rsa->iqmp)) != 0 || in sshkey_private_rsa1_to_blob() 3452 (r = sshbuf_put_bignum1(buffer, key->rsa->q)) != 0 || in sshkey_private_rsa1_to_blob() 3453 (r = sshbuf_put_bignum1(buffer, key->rsa->p)) != 0) in sshkey_private_rsa1_to_blob() 3479 (r = sshbuf_put_bignum1(encrypted, key->rsa->n)) != 0 || in sshkey_private_rsa1_to_blob() 3480 (r = sshbuf_put_bignum1(encrypted, key->rsa->e)) != 0 || in sshkey_private_rsa1_to_blob()
|
D | ssh-agent.c | 263 (r = sshbuf_put_bignum1(msg, in process_request_identities() 265 (r = sshbuf_put_bignum1(msg, in process_request_identities()
|
D | packet.c | 2869 return sshbuf_put_bignum1(ssh->state->outgoing_packet, v); in sshpkt_put_bignum1()
|
/external/openssh/regress/unittests/sshbuf/ |
D | test_sshbuf_getput_crypto.c | 84 ASSERT_INT_EQ(sshbuf_put_bignum1(p1, bn), 0); in sshbuf_getput_crypto_tests() 97 r = sshbuf_put_bignum1(p1, bn); in sshbuf_getput_crypto_tests() 108 ASSERT_INT_EQ(sshbuf_put_bignum1(p1, bn), 0); in sshbuf_getput_crypto_tests() 121 r = sshbuf_put_bignum1(p1, bn); in sshbuf_getput_crypto_tests()
|