Symbol: dh_gen_key
crypto/heimdal/kdc/pkinit.c
208
unsigned char *dh_gen_key = NULL;
crypto/heimdal/kdc/pkinit.c
232
dh_gen_key = malloc(size);
crypto/heimdal/kdc/pkinit.c
233
if (dh_gen_key == NULL) {
crypto/heimdal/kdc/pkinit.c
239
dh_gen_keylen = DH_compute_key(dh_gen_key,client_params->u.dh.public_key, client_params->u.dh.key);
crypto/heimdal/kdc/pkinit.c
248
memmove(dh_gen_key + size, dh_gen_key, dh_gen_keylen);
crypto/heimdal/kdc/pkinit.c
249
memset(dh_gen_key, 0, size);
crypto/heimdal/kdc/pkinit.c
275
dh_gen_key = malloc(size);
crypto/heimdal/kdc/pkinit.c
276
if (dh_gen_key == NULL) {
crypto/heimdal/kdc/pkinit.c
283
dh_gen_keylen = ECDH_compute_key(dh_gen_key, size,
crypto/heimdal/kdc/pkinit.c
297
dh_gen_key, dh_gen_keylen,
crypto/heimdal/kdc/pkinit.c
302
if (dh_gen_key)
crypto/heimdal/kdc/pkinit.c
303
free(dh_gen_key);
crypto/heimdal/lib/krb5/pkinit.c
1416
unsigned char *dh_gen_key = NULL;
crypto/heimdal/lib/krb5/pkinit.c
1526
dh_gen_key = malloc(size);
crypto/heimdal/lib/krb5/pkinit.c
1527
if (dh_gen_key == NULL) {
crypto/heimdal/lib/krb5/pkinit.c
1533
dh_gen_keylen = DH_compute_key(dh_gen_key, kdc_dh_pubkey, ctx->u.dh);
crypto/heimdal/lib/krb5/pkinit.c
1543
memmove(dh_gen_key + size, dh_gen_key, dh_gen_keylen);
crypto/heimdal/lib/krb5/pkinit.c
1544
memset(dh_gen_key, 0, size);
crypto/heimdal/lib/krb5/pkinit.c
1574
dh_gen_key = malloc(size);
crypto/heimdal/lib/krb5/pkinit.c
1575
if (dh_gen_key == NULL) {
crypto/heimdal/lib/krb5/pkinit.c
1582
dh_gen_keylen = ECDH_compute_key(dh_gen_key, size,
crypto/heimdal/lib/krb5/pkinit.c
1615
dh_gen_key, dh_gen_keylen,
crypto/heimdal/lib/krb5/pkinit.c
1629
if (dh_gen_key) {
crypto/heimdal/lib/krb5/pkinit.c
1630
memset(dh_gen_key, 0, dh_gen_keylen);
crypto/heimdal/lib/krb5/pkinit.c
1631
free(dh_gen_key);
crypto/openssh/dh.h
46
int dh_gen_key(DH *, int);
crypto/openssh/kexdh.c
69
return (dh_gen_key(kex->dh, kex->we_need * 8));
crypto/openssh/kexgexc.c
121
if ((r = dh_gen_key(kex->dh, kex->we_need * 8)) != 0)
crypto/openssh/kexgexs.c
116
if ((r = dh_gen_key(kex->dh, kex->we_need * 8)) != 0)