Searched defs:priv_key (Results 1 - 3 of 3) sorted by relevance
/bind-9.11.3/lib/dns/ |
H A D | pkcs11dsa_link.c | 905 CK_ATTRIBUTE *pub_key = NULL, *priv_key = NULL; local 936 priv_key = attr; 940 (pub_key == NULL) || (priv_key ==NULL)) 962 priv.elements[cnt].length = (unsigned short) priv_key->ulValueLen; 963 memmove(bufs[cnt], priv_key->pValue, priv_key->ulValueLen);
|
H A D | openssldh_link.c | 78 DH_get0_key(const DH *dh, const BIGNUM **pub_key, const BIGNUM **priv_key) { argument 81 if (priv_key != NULL) 82 *priv_key = dh->priv_key; 86 DH_set0_key(DH *dh, BIGNUM *pub_key, BIGNUM *priv_key) { argument 87 /* Note that it is valid for priv_key to be NULL */ 92 BN_free(dh->priv_key); 94 dh->priv_key = priv_key; 332 const BIGNUM *priv_key local 561 const BIGNUM *pub_key = NULL, *priv_key = NULL, *p = NULL, *g = NULL; local 628 BIGNUM *pub_key = NULL, *priv_key = NULL, *p = NULL, *g = NULL; local [all...] |
H A D | openssldsa_link.c | 80 DSA_get0_key(const DSA *d, const BIGNUM **pub_key, const BIGNUM **priv_key) { argument 83 if (priv_key != NULL) 84 *priv_key = d->priv_key; 88 DSA_set0_key(DSA *d, BIGNUM *pub_key, BIGNUM *priv_key) { argument 89 /* Note that it is valid for priv_key to be NULL */ 94 BN_free(d->priv_key); 96 d->priv_key = priv_key; 512 const BIGNUM *priv_key local 638 const BIGNUM *pub_key = NULL, *priv_key = NULL; local 696 BIGNUM *pub_key = NULL, *priv_key = NULL; local [all...] |
Completed in 16 milliseconds