Searched refs:kbuf (Results 1 - 2 of 2) sorted by relevance
/solaris-userland-s11u3/components/openssh/sources/ |
H A D | kexgssc.c | 71 uchar_t *kbuf; local 268 kbuf = xmalloc(klen); 269 kout = DH_compute_key(kbuf, dh_server_pub, kex->dh); 277 if (BN_bin2bn(kbuf, kout, shared_secret) == NULL) 280 memset(kbuf, 0, klen); 281 free(kbuf);
|
H A D | kexgsss.c | 78 uchar_t *kbuf; local 219 kbuf = xmalloc(klen); 220 kout = DH_compute_key(kbuf, dh_client_pub, kex->dh); 228 if (BN_bin2bn(kbuf, kout, shared_secret) == NULL) 231 memset(kbuf, 0, klen); 232 free(kbuf);
|
Completed in 1736 milliseconds