Searched refs:kout (Results 1 - 4 of 4) sorted by relevance

/freebsd-10.0-release/crypto/openssh/
H A Dkexdhc.c56 int kout; local
118 if ((kout = DH_compute_key(kbuf, dh_server_pub, dh)) < 0)
121 dump_digest("shared secret", kbuf, kout);
125 if (BN_bin2bn(kbuf, kout, shared_secret) == NULL)
H A Dkexdhs.c58 int kout; local
108 if ((kout = DH_compute_key(kbuf, dh_client_pub, dh)) < 0)
111 dump_digest("shared secret", kbuf, kout);
115 if (BN_bin2bn(kbuf, kout, shared_secret) == NULL)
H A Dkexgexc.c57 int kout; local
156 if ((kout = DH_compute_key(kbuf, dh_server_pub, dh)) < 0)
159 dump_digest("shared secret", kbuf, kout);
163 if (BN_bin2bn(kbuf, kout, shared_secret) == NULL)
H A Dkexgexs.c62 int type, kout; local
144 if ((kout = DH_compute_key(kbuf, dh_client_pub, dh)) < 0)
147 dump_digest("shared secret", kbuf, kout);
151 if (BN_bin2bn(kbuf, kout, shared_secret) == NULL)

Completed in 71 milliseconds