Searched refs:kout (Results 1 – 4 of 4) sorted by relevance
/external/openssh/ |
D | kexdhc.c | 105 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()
|
D | kexdhs.c | 97 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()
|
D | kexgexs.c | 133 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()
|
D | kexgexc.c | 155 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()
|