Searched defs:pubattr (Results 1 - 3 of 3) sorted by relevance
/bind-9.11.3/lib/dns/ |
H A D | pkcs11ecdsa_link.c | 812 CK_ATTRIBUTE *pubattr; local 835 pubattr = pk11_attribute_bytype(pubec, CKA_EC_PARAMS); 836 attr->pValue = isc_mem_get(key->mctx, pubattr->ulValueLen); 839 memmove(attr->pValue, pubattr->pValue, pubattr->ulValueLen); 840 attr->ulValueLen = pubattr->ulValueLen; 844 pubattr = pk11_attribute_bytype(pubec, CKA_EC_POINT); 845 attr->pValue = isc_mem_get(key->mctx, pubattr->ulValueLen); 848 memmove(attr->pValue, pubattr->pValue, pubattr [all...] |
H A D | pkcs11eddsa_link.c | 798 CK_ATTRIBUTE *pubattr; local 821 pubattr = pk11_attribute_bytype(pubec, CKA_EC_PARAMS); 822 attr->pValue = isc_mem_get(key->mctx, pubattr->ulValueLen); 825 memmove(attr->pValue, pubattr->pValue, pubattr->ulValueLen); 826 attr->ulValueLen = pubattr->ulValueLen; 830 pubattr = pk11_attribute_bytype(pubec, CKA_EC_POINT); 831 attr->pValue = isc_mem_get(key->mctx, pubattr->ulValueLen); 834 memmove(attr->pValue, pubattr->pValue, pubattr [all...] |
H A D | pkcs11rsa_link.c | 1712 CK_ATTRIBUTE *pubattr; local 1735 pubattr = pk11_attribute_bytype(pubrsa, CKA_MODULUS); 1736 attr->pValue = isc_mem_get(key->mctx, pubattr->ulValueLen); 1739 memmove(attr->pValue, pubattr->pValue, pubattr->ulValueLen); 1740 attr->ulValueLen = pubattr->ulValueLen; 1744 pubattr = pk11_attribute_bytype(pubrsa, CKA_PUBLIC_EXPONENT); 1745 attr->pValue = isc_mem_get(key->mctx, pubattr->ulValueLen); 1748 memmove(attr->pValue, pubattr->pValue, pubattr 1817 CK_ATTRIBUTE *pubattr, *privattr; local [all...] |
Completed in 18 milliseconds