Symbol: sshbuf_get_bignum2
crypto/openssh/kexdh.c
189
(r = sshbuf_get_bignum2(buf, &dh_pub)) != 0)
crypto/openssh/monitor_wrap.c
241
if ((r = sshbuf_get_bignum2(m, &p)) != 0 ||
crypto/openssh/monitor_wrap.c
242
(r = sshbuf_get_bignum2(m, &g)) != 0)
crypto/openssh/packet.c
2737
return sshbuf_get_bignum2(ssh->state->incoming_packet, valp);
crypto/openssh/regress/unittests/sshbuf/test_sshbuf_getput_crypto.c
138
ASSERT_INT_EQ(sshbuf_get_bignum2(p1, &bn2), 0);
crypto/openssh/regress/unittests/sshbuf/test_sshbuf_getput_crypto.c
153
r = sshbuf_get_bignum2(p1, &bn2);
crypto/openssh/regress/unittests/sshbuf/test_sshbuf_getput_crypto.c
168
r = sshbuf_get_bignum2(p1, &bn2);
crypto/openssh/regress/unittests/sshbuf/test_sshbuf_getput_crypto.c
186
ASSERT_INT_EQ(sshbuf_get_bignum2(p1, &bn2), 0);
crypto/openssh/regress/unittests/sshbuf/test_sshbuf_getput_crypto.c
202
r = sshbuf_get_bignum2(p1, &bn2);
crypto/openssh/regress/unittests/sshbuf/test_sshbuf_getput_crypto.c
217
r = sshbuf_get_bignum2(p1, &bn2);
crypto/openssh/regress/unittests/sshbuf/test_sshbuf_getput_fuzz.c
62
sshbuf_get_bignum2(p1, &bn);
crypto/openssh/ssh-dss.c
207
if (sshbuf_get_bignum2(b, &dsa_p) != 0 ||
crypto/openssh/ssh-dss.c
208
sshbuf_get_bignum2(b, &dsa_q) != 0 ||
crypto/openssh/ssh-dss.c
209
sshbuf_get_bignum2(b, &dsa_g) != 0 ||
crypto/openssh/ssh-dss.c
210
sshbuf_get_bignum2(b, &dsa_pub_key) != 0) {
crypto/openssh/ssh-dss.c
249
if ((r = sshbuf_get_bignum2(b, &dsa_priv_key)) != 0)
crypto/openssh/ssh-ecdsa-sk.c
302
if (sshbuf_get_bignum2(sigbuf, &sig_r) != 0 ||
crypto/openssh/ssh-ecdsa-sk.c
303
sshbuf_get_bignum2(sigbuf, &sig_s) != 0) {
crypto/openssh/ssh-ecdsa.c
295
if ((r = sshbuf_get_bignum2(b, &exponent)) != 0)
crypto/openssh/ssh-ecdsa.c
425
if (sshbuf_get_bignum2(sigbuf, &sig_r) != 0 ||
crypto/openssh/ssh-ecdsa.c
426
sshbuf_get_bignum2(sigbuf, &sig_s) != 0) {
crypto/openssh/ssh-rsa.c
205
if (sshbuf_get_bignum2(b, &rsa_e) != 0 ||
crypto/openssh/ssh-rsa.c
206
sshbuf_get_bignum2(b, &rsa_n) != 0) {
crypto/openssh/ssh-rsa.c
255
if ((r = sshbuf_get_bignum2(b, &rsa_n)) != 0 ||
crypto/openssh/ssh-rsa.c
256
(r = sshbuf_get_bignum2(b, &rsa_e)) != 0)
crypto/openssh/ssh-rsa.c
264
if ((r = sshbuf_get_bignum2(b, &rsa_d)) != 0 ||
crypto/openssh/ssh-rsa.c
265
(r = sshbuf_get_bignum2(b, &rsa_iqmp)) != 0 ||
crypto/openssh/ssh-rsa.c
266
(r = sshbuf_get_bignum2(b, &rsa_p)) != 0 ||
crypto/openssh/ssh-rsa.c
267
(r = sshbuf_get_bignum2(b, &rsa_q)) != 0)
crypto/openssh/sshbuf.h
220
int sshbuf_get_bignum2(struct sshbuf *buf, BIGNUM **valp);