Symbol: sshbuf_get_bignum2
crypto/openssh/kexdh.c
189
(r = sshbuf_get_bignum2(buf, &dh_pub)) != 0)
crypto/openssh/monitor_wrap.c
251
if ((r = sshbuf_get_bignum2(m, &p)) != 0 ||
crypto/openssh/monitor_wrap.c
252
(r = sshbuf_get_bignum2(m, &g)) != 0)
crypto/openssh/packet.c
2725
return sshbuf_get_bignum2(ssh->state->incoming_packet, valp);
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
300
if (sshbuf_get_bignum2(sigbuf, &sig_r) != 0 ||
crypto/openssh/ssh-ecdsa-sk.c
301
sshbuf_get_bignum2(sigbuf, &sig_s) != 0) {
crypto/openssh/ssh-ecdsa.c
210
if ((r = sshbuf_get_bignum2(b, &exponent)) != 0)
crypto/openssh/ssh-ecdsa.c
332
if (sshbuf_get_bignum2(sigbuf, &sig_r) != 0 ||
crypto/openssh/ssh-ecdsa.c
333
sshbuf_get_bignum2(sigbuf, &sig_s) != 0) {
crypto/openssh/ssh-rsa.c
192
if (sshbuf_get_bignum2(b, &rsa_e) != 0 ||
crypto/openssh/ssh-rsa.c
193
sshbuf_get_bignum2(b, &rsa_n) != 0) {
crypto/openssh/ssh-rsa.c
225
if ((r = sshbuf_get_bignum2(b, &rsa_n)) != 0 ||
crypto/openssh/ssh-rsa.c
226
(r = sshbuf_get_bignum2(b, &rsa_e)) != 0)
crypto/openssh/ssh-rsa.c
234
if ((r = sshbuf_get_bignum2(b, &rsa_d)) != 0 ||
crypto/openssh/ssh-rsa.c
235
(r = sshbuf_get_bignum2(b, &rsa_iqmp)) != 0 ||
crypto/openssh/ssh-rsa.c
236
(r = sshbuf_get_bignum2(b, &rsa_p)) != 0 ||
crypto/openssh/ssh-rsa.c
237
(r = sshbuf_get_bignum2(b, &rsa_q)) != 0)
crypto/openssh/sshbuf.h
219
int sshbuf_get_bignum2(struct sshbuf *buf, BIGNUM **valp);