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

/freebsd-10.1-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.c54 int kout; local
104 if ((kout = DH_compute_key(kbuf, dh_client_pub, dh)) < 0)
107 dump_digest("shared secret", kbuf, kout);
111 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 112 milliseconds