sshbuf_put_bignum2
r = sshbuf_put_bignum2(out, shared_secret);
if ((r = sshbuf_put_bignum2(buf, pub_key)) != 0 ||
if ((r = sshbuf_put_bignum2(server_blob, pub_key)) != 0 ||
if ((r = sshbuf_put_bignum2(buf, shared_secret)) != 0)
(r = sshbuf_put_bignum2(b, prime)) != 0 ||
(r = sshbuf_put_bignum2(b, gen)) != 0 ||
(r = sshbuf_put_bignum2(b, client_dh_pub)) != 0 ||
(r = sshbuf_put_bignum2(b, server_dh_pub)) != 0 ||
(r = sshbuf_put_bignum2(m, dh_p)) != 0 ||
(r = sshbuf_put_bignum2(m, dh_g)) != 0)
return sshbuf_put_bignum2(ssh->state->outgoing_packet, v);
ASSERT_INT_EQ(sshbuf_put_bignum2(p1, bn), 0);
r = sshbuf_put_bignum2(p1, bn);
ASSERT_INT_EQ(sshbuf_put_bignum2(p1, bn), 0);
r = sshbuf_put_bignum2(p1, bn);
if ((r = sshbuf_put_bignum2(b, dsa_p)) != 0 ||
(r = sshbuf_put_bignum2(b, dsa_q)) != 0 ||
(r = sshbuf_put_bignum2(b, dsa_g)) != 0 ||
(r = sshbuf_put_bignum2(b, dsa_pub_key)) != 0)
if ((r = sshbuf_put_bignum2(b, dsa_priv_key)) != 0)
if ((r = sshbuf_put_bignum2(b,
if ((ret = sshbuf_put_bignum2(bb, sig_r)) != 0 ||
(ret = sshbuf_put_bignum2(bb, sig_s)) != 0)
if ((r = sshbuf_put_bignum2(b, rsa_n)) != 0 ||
(r = sshbuf_put_bignum2(b, rsa_e)) != 0)
if ((r = sshbuf_put_bignum2(b, rsa_d)) != 0 ||
(r = sshbuf_put_bignum2(b, rsa_iqmp)) != 0 ||
(r = sshbuf_put_bignum2(b, rsa_p)) != 0 ||
(r = sshbuf_put_bignum2(b, rsa_q)) != 0)
if ((r = sshbuf_put_bignum2(b, rsa_e)) != 0 ||
(r = sshbuf_put_bignum2(b, rsa_n)) != 0)
int sshbuf_put_bignum2(struct sshbuf *buf, const BIGNUM *v);