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

/macosx-10.10/OpenSSH-189/openssh/
H A Dkexdhc.c60 int kout; local
122 if ((kout = DH_compute_key(kbuf, dh_server_pub, dh)) < 0)
125 dump_digest("shared secret", kbuf, kout);
129 if (BN_bin2bn(kbuf, kout, shared_secret) == NULL)
H A Dkexdhs.c62 int kout; local
115 if ((kout = DH_compute_key(kbuf, dh_client_pub, dh)) < 0)
118 dump_digest("shared secret", kbuf, kout);
122 if (BN_bin2bn(kbuf, kout, shared_secret) == NULL)
H A Dkexgexc.c61 int kout; local
160 if ((kout = DH_compute_key(kbuf, dh_server_pub, dh)) < 0)
163 dump_digest("shared secret", kbuf, kout);
167 if (BN_bin2bn(kbuf, kout, shared_secret) == NULL)
H A Dkexgexs.c66 int type, kout; local
152 if ((kout = DH_compute_key(kbuf, dh_client_pub, dh)) < 0)
155 dump_digest("shared secret", kbuf, kout);
159 if (BN_bin2bn(kbuf, kout, shared_secret) == NULL)
H A Dkexgssc.c59 u_int klen, kout, slen = 0, hashlen, strlen; local
257 kout = DH_compute_key(kbuf, dh_server_pub, dh);
258 if (kout < 0)
265 if (BN_bin2bn(kbuf, kout, shared_secret) == NULL)
H A Dkexgsss.c70 u_int slen, klen, kout, hashlen; local
203 kout = DH_compute_key(kbuf, dh_client_pub, dh);
204 if (kout < 0)
211 if (BN_bin2bn(kbuf, kout, shared_secret) == NULL)
/macosx-10.10/Heimdal-398.1.2/lib/hcrypto/libtommath/mtest/
H A Dmpi.c2902 mp_digit kin = 0, kout, *dp = DIGITS(mp); local
2907 kout = (dp[ix] >> (DIGIT_BIT - 1)) & 1;
2910 kin = kout;

Completed in 151 milliseconds