Searched refs:kout (Results 1 – 4 of 4) sorted by relevance
/external/openssh/ |
D | kexdhs.c | 104 int kout, r; in input_kex_dh_init() local 154 if ((kout = DH_compute_key(kbuf, dh_client_pub, kex->dh)) < 0 || in input_kex_dh_init() 155 BN_bin2bn(kbuf, kout, shared_secret) == NULL) { in input_kex_dh_init() 160 dump_digest("shared secret", kbuf, kout); in input_kex_dh_init()
|
D | kexdhc.c | 112 int kout, r; in input_kex_dh() local 162 if ((kout = DH_compute_key(kbuf, dh_server_pub, kex->dh)) < 0 || in input_kex_dh() 163 BN_bin2bn(kbuf, kout, shared_secret) == NULL) { in input_kex_dh() 168 dump_digest("shared secret", kbuf, kout); in input_kex_dh()
|
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()
|