Symbol: sshbuf_put_bignum2
crypto/openssh/kexdh.c
105
r = sshbuf_put_bignum2(out, shared_secret);
crypto/openssh/kexdh.c
124
if ((r = sshbuf_put_bignum2(buf, pub_key)) != 0 ||
crypto/openssh/kexdh.c
158
if ((r = sshbuf_put_bignum2(server_blob, pub_key)) != 0 ||
crypto/openssh/kexecdh.c
186
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
692
(r = sshbuf_put_bignum2(m, dh_p)) != 0 ||
crypto/openssh/monitor.c
693
(r = sshbuf_put_bignum2(m, dh_g)) != 0)
crypto/openssh/packet.c
2763
return sshbuf_put_bignum2(ssh->state->outgoing_packet, v);
crypto/openssh/regress/unittests/sshbuf/test_sshbuf_getput_crypto.c
107
ASSERT_INT_EQ(sshbuf_put_bignum2(p1, bn), 0);
crypto/openssh/regress/unittests/sshbuf/test_sshbuf_getput_crypto.c
121
r = sshbuf_put_bignum2(p1, bn);
crypto/openssh/regress/unittests/sshbuf/test_sshbuf_getput_crypto.c
83
ASSERT_INT_EQ(sshbuf_put_bignum2(p1, bn), 0);
crypto/openssh/regress/unittests/sshbuf/test_sshbuf_getput_crypto.c
96
r = sshbuf_put_bignum2(p1, bn);
crypto/openssh/ssh-ecdsa.c
159
if ((r = sshbuf_put_bignum2(b,
crypto/openssh/ssh-ecdsa.c
383
if ((ret = sshbuf_put_bignum2(bb, sig_r)) != 0 ||
crypto/openssh/ssh-ecdsa.c
384
(ret = sshbuf_put_bignum2(bb, sig_s)) != 0)
crypto/openssh/ssh-rsa.c
105
if ((r = sshbuf_put_bignum2(b, rsa_n)) != 0 ||
crypto/openssh/ssh-rsa.c
106
(r = sshbuf_put_bignum2(b, rsa_e)) != 0)
crypto/openssh/ssh-rsa.c
109
if ((r = sshbuf_put_bignum2(b, rsa_d)) != 0 ||
crypto/openssh/ssh-rsa.c
110
(r = sshbuf_put_bignum2(b, rsa_iqmp)) != 0 ||
crypto/openssh/ssh-rsa.c
111
(r = sshbuf_put_bignum2(b, rsa_p)) != 0 ||
crypto/openssh/ssh-rsa.c
112
(r = sshbuf_put_bignum2(b, rsa_q)) != 0)
crypto/openssh/ssh-rsa.c
82
if ((r = sshbuf_put_bignum2(b, rsa_e)) != 0 ||
crypto/openssh/ssh-rsa.c
83
(r = sshbuf_put_bignum2(b, rsa_n)) != 0)
crypto/openssh/sshbuf.h
242
int sshbuf_put_bignum2(struct sshbuf *buf, const BIGNUM *v);