Home
last modified time | relevance | path

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

/external/openssh/
Dkexdhc.c105 int kout, r; in input_kex_dh() local
155 if ((kout = DH_compute_key(kbuf, dh_server_pub, kex->dh)) < 0 || in input_kex_dh()
156 BN_bin2bn(kbuf, kout, shared_secret) == NULL) { in input_kex_dh()
161 dump_digest("shared secret", kbuf, kout); in input_kex_dh()
Dkexdhs.c97 int kout, r; in input_kex_dh_init() local
147 if ((kout = DH_compute_key(kbuf, dh_client_pub, kex->dh)) < 0 || in input_kex_dh_init()
148 BN_bin2bn(kbuf, kout, shared_secret) == NULL) { in input_kex_dh_init()
153 dump_digest("shared secret", kbuf, kout); in input_kex_dh_init()
Dkexgexs.c133 int kout, r; in input_kex_dh_gex_init() local
183 if ((kout = DH_compute_key(kbuf, dh_client_pub, kex->dh)) < 0 || in input_kex_dh_gex_init()
184 BN_bin2bn(kbuf, kout, shared_secret) == NULL) { in input_kex_dh_gex_init()
189 dump_digest("shared secret", kbuf, kout); in input_kex_dh_gex_init()
Dkexgexc.c155 int kout, r; in input_kex_dh_gex_reply() local
210 if ((kout = DH_compute_key(kbuf, dh_server_pub, kex->dh)) < 0 || in input_kex_dh_gex_reply()
211 BN_bin2bn(kbuf, kout, shared_secret) == NULL) { in input_kex_dh_gex_reply()
216 dump_digest("shared secret", kbuf, kout); in input_kex_dh_gex_reply()