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
600
(r = sshbuf_put_bignum2(m, dh_p)) != 0 ||
crypto/openssh/monitor.c
601
(r = sshbuf_put_bignum2(m, dh_g)) != 0)
crypto/openssh/packet.c
2659
return sshbuf_put_bignum2(ssh->state->outgoing_packet, v);
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
120
if ((r = sshbuf_put_bignum2(b,
crypto/openssh/ssh-ecdsa.c
265
if ((ret = sshbuf_put_bignum2(bb, sig_r)) != 0 ||
crypto/openssh/ssh-ecdsa.c
266
(ret = sshbuf_put_bignum2(bb, sig_s)) != 0)
crypto/openssh/ssh-rsa.c
118
if ((r = sshbuf_put_bignum2(b, rsa_n)) != 0 ||
crypto/openssh/ssh-rsa.c
119
(r = sshbuf_put_bignum2(b, rsa_e)) != 0)
crypto/openssh/ssh-rsa.c
122
if ((r = sshbuf_put_bignum2(b, rsa_d)) != 0 ||
crypto/openssh/ssh-rsa.c
123
(r = sshbuf_put_bignum2(b, rsa_iqmp)) != 0 ||
crypto/openssh/ssh-rsa.c
124
(r = sshbuf_put_bignum2(b, rsa_p)) != 0 ||
crypto/openssh/ssh-rsa.c
125
(r = sshbuf_put_bignum2(b, rsa_q)) != 0)
crypto/openssh/ssh-rsa.c
98
if ((r = sshbuf_put_bignum2(b, rsa_e)) != 0 ||
crypto/openssh/ssh-rsa.c
99
(r = sshbuf_put_bignum2(b, rsa_n)) != 0)
crypto/openssh/sshbuf.h
220
int sshbuf_put_bignum2(struct sshbuf *buf, const BIGNUM *v);