HomeSort by relevance Sort by last modified time
    Searched refs:sshbuf_put_bignum2 (Results 1 - 10 of 10) sorted by null

  /external/openssh/
kexgex.c 80 (r = sshbuf_put_bignum2(b, prime)) != 0 ||
81 (r = sshbuf_put_bignum2(b, gen)) != 0 ||
82 (r = sshbuf_put_bignum2(b, client_dh_pub)) != 0 ||
83 (r = sshbuf_put_bignum2(b, server_dh_pub)) != 0 ||
84 (r = sshbuf_put_bignum2(b, shared_secret)) != 0) {
kexdh.c 73 (r = sshbuf_put_bignum2(b, client_dh_pub)) != 0 ||
74 (r = sshbuf_put_bignum2(b, server_dh_pub)) != 0 ||
75 (r = sshbuf_put_bignum2(b, shared_secret)) != 0) {
bufbn.c 76 if ((ret = sshbuf_put_bignum2(buffer, value)) != 0) {
ssh-ecdsa.c 83 if ((ret = sshbuf_put_bignum2(bb, sig->r)) != 0 ||
84 (ret = sshbuf_put_bignum2(bb, sig->s)) != 0)
kexecdh.c 82 (r = sshbuf_put_bignum2(b, shared_secret)) != 0) {
sshkey.c 762 (ret = sshbuf_put_bignum2(b, key->dsa->p)) != 0 ||
763 (ret = sshbuf_put_bignum2(b, key->dsa->q)) != 0 ||
764 (ret = sshbuf_put_bignum2(b, key->dsa->g)) != 0 ||
765 (ret = sshbuf_put_bignum2(b, key->dsa->pub_key)) != 0)
783 (ret = sshbuf_put_bignum2(b, key->rsa->e)) != 0 ||
784 (ret = sshbuf_put_bignum2(b, key->rsa->n)) != 0)
    [all...]
sshbuf-getput-crypto.c 147 sshbuf_put_bignum2(struct sshbuf *buf, const BIGNUM *v) function
sshbuf.h 217 int sshbuf_put_bignum2(struct sshbuf *buf, const BIGNUM *v);
kex.c 860 if ((r = sshbuf_put_bignum2(shared_secret, secret)) == 0)
packet.c     [all...]

Completed in 1248 milliseconds