Home
last modified time | relevance | path

Searched refs:sshbuf_put_bignum2 (Results 1 – 11 of 11) sorted by relevance

/freebsd/crypto/openssh/
H A Dkexgex.c82 (r = sshbuf_put_bignum2(b, prime)) != 0 || in kexgex_hash()
83 (r = sshbuf_put_bignum2(b, gen)) != 0 || in kexgex_hash()
84 (r = sshbuf_put_bignum2(b, client_dh_pub)) != 0 || in kexgex_hash()
85 (r = sshbuf_put_bignum2(b, server_dh_pub)) != 0 || in kexgex_hash()
H A Dssh-rsa.c82 if ((r = sshbuf_put_bignum2(b, rsa_e)) != 0 || in ssh_rsa_serialize_public()
83 (r = sshbuf_put_bignum2(b, rsa_n)) != 0) in ssh_rsa_serialize_public()
105 if ((r = sshbuf_put_bignum2(b, rsa_n)) != 0 || in ssh_rsa_serialize_private()
106 (r = sshbuf_put_bignum2(b, rsa_e)) != 0) in ssh_rsa_serialize_private()
109 if ((r = sshbuf_put_bignum2(b, rsa_d)) != 0 || in ssh_rsa_serialize_private()
110 (r = sshbuf_put_bignum2(b, rsa_iqmp)) != 0 || in ssh_rsa_serialize_private()
111 (r = sshbuf_put_bignum2(b, rsa_p)) != 0 || in ssh_rsa_serialize_private()
112 (r = sshbuf_put_bignum2(b, rsa_q)) != 0) in ssh_rsa_serialize_private()
H A Dkexdh.c105 r = sshbuf_put_bignum2(out, shared_secret); in kex_dh_compute_key()
124 if ((r = sshbuf_put_bignum2(buf, pub_key)) != 0 || in kex_dh_keypair()
158 if ((r = sshbuf_put_bignum2(server_blob, pub_key)) != 0 || in kex_dh_enc()
H A Dssh-ecdsa.c159 if ((r = sshbuf_put_bignum2(b, in ssh_ecdsa_serialize_private()
383 if ((ret = sshbuf_put_bignum2(bb, sig_r)) != 0 || in ssh_ecdsa_encode_store_sig()
384 (ret = sshbuf_put_bignum2(bb, sig_s)) != 0) in ssh_ecdsa_encode_store_sig()
H A Dsshbuf-getput-crypto.c131 sshbuf_put_bignum2(struct sshbuf *buf, const BIGNUM *v) in sshbuf_put_bignum2() function
H A Dkexecdh.c186 if ((r = sshbuf_put_bignum2(buf, shared_secret)) != 0) in kex_ecdh_dec_key_group()
H A Dsshbuf.h241 int sshbuf_put_bignum2(struct sshbuf *buf, const BIGNUM *v);
H A Dmonitor.c706 (r = sshbuf_put_bignum2(m, dh_p)) != 0 || in mm_answer_moduli()
707 (r = sshbuf_put_bignum2(m, dh_g)) != 0) in mm_answer_moduli()
H A Dssh_namespace.h823 #define sshbuf_put_bignum2 Fssh_sshbuf_put_bignum2 macro
H A Dpacket.c2740 return sshbuf_put_bignum2(ssh->state->outgoing_packet, v); in sshpkt_put_bignum2()
/freebsd/crypto/openssh/regress/unittests/sshbuf/
H A Dtest_sshbuf_getput_crypto.c83 ASSERT_INT_EQ(sshbuf_put_bignum2(p1, bn), 0); in sshbuf_getput_crypto_tests()
96 r = sshbuf_put_bignum2(p1, bn); in sshbuf_getput_crypto_tests()
107 ASSERT_INT_EQ(sshbuf_put_bignum2(p1, bn), 0); in sshbuf_getput_crypto_tests()
121 r = sshbuf_put_bignum2(p1, bn); in sshbuf_getput_crypto_tests()