Symbol: sshbuf_put_bignum2
crypto/openssh/kexdh.c
107
r = sshbuf_put_bignum2(out, shared_secret);
crypto/openssh/kexdh.c
126
if ((r = sshbuf_put_bignum2(buf, pub_key)) != 0 ||
crypto/openssh/kexdh.c
160
if ((r = sshbuf_put_bignum2(server_blob, pub_key)) != 0 ||
crypto/openssh/kexecdh.c
187
if ((r = sshbuf_put_bignum2(buf, shared_secret)) != 0)
crypto/openssh/kexgex.c
82
(r = sshbuf_put_bignum2(b, prime)) != 0 ||
crypto/openssh/kexgex.c
83
(r = sshbuf_put_bignum2(b, gen)) != 0 ||
crypto/openssh/kexgex.c
84
(r = sshbuf_put_bignum2(b, client_dh_pub)) != 0 ||
crypto/openssh/kexgex.c
85
(r = sshbuf_put_bignum2(b, server_dh_pub)) != 0 ||
crypto/openssh/monitor.c
695
(r = sshbuf_put_bignum2(m, dh_p)) != 0 ||
crypto/openssh/monitor.c
696
(r = sshbuf_put_bignum2(m, dh_g)) != 0)
crypto/openssh/packet.c
2665
return sshbuf_put_bignum2(ssh->state->outgoing_packet, v);
crypto/openssh/regress/unittests/sshbuf/test_sshbuf_getput_crypto.c
108
ASSERT_INT_EQ(sshbuf_put_bignum2(p1, bn), 0);
crypto/openssh/regress/unittests/sshbuf/test_sshbuf_getput_crypto.c
122
r = sshbuf_put_bignum2(p1, bn);
crypto/openssh/regress/unittests/sshbuf/test_sshbuf_getput_crypto.c
84
ASSERT_INT_EQ(sshbuf_put_bignum2(p1, bn), 0);
crypto/openssh/regress/unittests/sshbuf/test_sshbuf_getput_crypto.c
97
r = sshbuf_put_bignum2(p1, bn);
crypto/openssh/ssh-dss.c
118
if ((r = sshbuf_put_bignum2(b, dsa_p)) != 0 ||
crypto/openssh/ssh-dss.c
119
(r = sshbuf_put_bignum2(b, dsa_q)) != 0 ||
crypto/openssh/ssh-dss.c
120
(r = sshbuf_put_bignum2(b, dsa_g)) != 0 ||
crypto/openssh/ssh-dss.c
121
(r = sshbuf_put_bignum2(b, dsa_pub_key)) != 0)
crypto/openssh/ssh-dss.c
139
if ((r = sshbuf_put_bignum2(b, dsa_priv_key)) != 0)
crypto/openssh/ssh-ecdsa.c
161
if ((r = sshbuf_put_bignum2(b,
crypto/openssh/ssh-ecdsa.c
360
if ((ret = sshbuf_put_bignum2(bb, sig_r)) != 0 ||
crypto/openssh/ssh-ecdsa.c
361
(ret = sshbuf_put_bignum2(bb, sig_s)) != 0)
crypto/openssh/ssh-rsa.c
107
if ((r = sshbuf_put_bignum2(b, rsa_n)) != 0 ||
crypto/openssh/ssh-rsa.c
108
(r = sshbuf_put_bignum2(b, rsa_e)) != 0)
crypto/openssh/ssh-rsa.c
111
if ((r = sshbuf_put_bignum2(b, rsa_d)) != 0 ||
crypto/openssh/ssh-rsa.c
112
(r = sshbuf_put_bignum2(b, rsa_iqmp)) != 0 ||
crypto/openssh/ssh-rsa.c
113
(r = sshbuf_put_bignum2(b, rsa_p)) != 0 ||
crypto/openssh/ssh-rsa.c
114
(r = sshbuf_put_bignum2(b, rsa_q)) != 0)
crypto/openssh/ssh-rsa.c
84
if ((r = sshbuf_put_bignum2(b, rsa_e)) != 0 ||
crypto/openssh/ssh-rsa.c
85
(r = sshbuf_put_bignum2(b, rsa_n)) != 0)
crypto/openssh/sshbuf.h
221
int sshbuf_put_bignum2(struct sshbuf *buf, const BIGNUM *v);