Searched refs:sshbuf_put_bignum1 (Results 1 – 7 of 7) 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() 493 (r = sshbuf_put_bignum1(b, key->n)) != 0 || in ssh_encode_identity_rsa1() 494 (r = sshbuf_put_bignum1(b, key->e)) != 0 || in ssh_encode_identity_rsa1() 495 (r = sshbuf_put_bignum1(b, key->d)) != 0 || in ssh_encode_identity_rsa1() 496 (r = sshbuf_put_bignum1(b, key->iqmp)) != 0 || in ssh_encode_identity_rsa1() 497 (r = sshbuf_put_bignum1(b, key->q)) != 0 || in ssh_encode_identity_rsa1() 498 (r = sshbuf_put_bignum1(b, key->p)) != 0 || in ssh_encode_identity_rsa1() 618 (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 | 218 int sshbuf_put_bignum1(struct sshbuf *buf, const BIGNUM *v);
|
D | sshkey.c | 3451 if ((r = sshbuf_put_bignum1(buffer, key->rsa->d)) != 0 || in sshkey_private_rsa1_to_blob() 3452 (r = sshbuf_put_bignum1(buffer, key->rsa->iqmp)) != 0 || in sshkey_private_rsa1_to_blob() 3453 (r = sshbuf_put_bignum1(buffer, key->rsa->q)) != 0 || in sshkey_private_rsa1_to_blob() 3454 (r = sshbuf_put_bignum1(buffer, key->rsa->p)) != 0) in sshkey_private_rsa1_to_blob() 3480 (r = sshbuf_put_bignum1(encrypted, key->rsa->n) != 0) || in sshkey_private_rsa1_to_blob() 3481 (r = sshbuf_put_bignum1(encrypted, key->rsa->e) != 0) || in sshkey_private_rsa1_to_blob()
|
D | ssh-agent.c | 256 (r = sshbuf_put_bignum1(msg, in process_request_identities() 258 (r = sshbuf_put_bignum1(msg, in process_request_identities()
|
D | packet.c | 2742 return sshbuf_put_bignum1(ssh->state->outgoing_packet, v); in sshpkt_put_bignum1()
|