Symbol: sshbuf_get_bignum2
crypto/openssh/kexdh.c
187
(r = sshbuf_get_bignum2(buf, &dh_pub)) != 0)
crypto/openssh/monitor_wrap.c
246
if ((r = sshbuf_get_bignum2(m, &p)) != 0 ||
crypto/openssh/monitor_wrap.c
247
(r = sshbuf_get_bignum2(m, &g)) != 0)
crypto/openssh/packet.c
2835
return sshbuf_get_bignum2(ssh->state->incoming_packet, valp);
crypto/openssh/regress/unittests/sshbuf/test_sshbuf_getput_crypto.c
137
ASSERT_INT_EQ(sshbuf_get_bignum2(p1, &bn2), 0);
crypto/openssh/regress/unittests/sshbuf/test_sshbuf_getput_crypto.c
152
r = sshbuf_get_bignum2(p1, &bn2);
crypto/openssh/regress/unittests/sshbuf/test_sshbuf_getput_crypto.c
167
r = sshbuf_get_bignum2(p1, &bn2);
crypto/openssh/regress/unittests/sshbuf/test_sshbuf_getput_crypto.c
185
ASSERT_INT_EQ(sshbuf_get_bignum2(p1, &bn2), 0);
crypto/openssh/regress/unittests/sshbuf/test_sshbuf_getput_crypto.c
201
r = sshbuf_get_bignum2(p1, &bn2);
crypto/openssh/regress/unittests/sshbuf/test_sshbuf_getput_crypto.c
216
r = sshbuf_get_bignum2(p1, &bn2);
crypto/openssh/regress/unittests/sshbuf/test_sshbuf_getput_fuzz.c
60
ASSERT_INT_EQ(sshbuf_get_bignum2(p1, &bn), 0);
crypto/openssh/ssh-ecdsa-sk.c
304
if (sshbuf_get_bignum2(sigbuf, &sig_r) != 0 ||
crypto/openssh/ssh-ecdsa-sk.c
305
sshbuf_get_bignum2(sigbuf, &sig_s) != 0) {
crypto/openssh/ssh-ecdsa.c
293
if ((r = sshbuf_get_bignum2(b, &exponent)) != 0)
crypto/openssh/ssh-ecdsa.c
446
if (sshbuf_get_bignum2(sigbuf, &sig_r) != 0 ||
crypto/openssh/ssh-ecdsa.c
447
sshbuf_get_bignum2(sigbuf, &sig_s) != 0) {
crypto/openssh/ssh-rsa.c
203
if (sshbuf_get_bignum2(b, &rsa_e) != 0 ||
crypto/openssh/ssh-rsa.c
204
sshbuf_get_bignum2(b, &rsa_n) != 0) {
crypto/openssh/ssh-rsa.c
253
if ((r = sshbuf_get_bignum2(b, &rsa_n)) != 0 ||
crypto/openssh/ssh-rsa.c
254
(r = sshbuf_get_bignum2(b, &rsa_e)) != 0)
crypto/openssh/ssh-rsa.c
262
if ((r = sshbuf_get_bignum2(b, &rsa_d)) != 0 ||
crypto/openssh/ssh-rsa.c
263
(r = sshbuf_get_bignum2(b, &rsa_iqmp)) != 0 ||
crypto/openssh/ssh-rsa.c
264
(r = sshbuf_get_bignum2(b, &rsa_p)) != 0 ||
crypto/openssh/ssh-rsa.c
265
(r = sshbuf_get_bignum2(b, &rsa_q)) != 0)
crypto/openssh/sshbuf.h
241
int sshbuf_get_bignum2(struct sshbuf *buf, BIGNUM **valp);