Lines Matching defs:pattr
900 CK_ATTRIBUTE *attr, *pattr;
966 pattr = pk11_attribute_bytype(pub->keydata.pkey, CKA_EC_PARAMS);
967 INSIST(pattr != NULL);
968 attr->pValue = isc_mem_get(key->mctx, pattr->ulValueLen);
971 memmove(attr->pValue, pattr->pValue, pattr->ulValueLen);
972 attr->ulValueLen = pattr->ulValueLen;
976 pattr = pk11_attribute_bytype(pub->keydata.pkey, CKA_EC_POINT);
977 INSIST(pattr != NULL);
978 attr->pValue = isc_mem_get(key->mctx, pattr->ulValueLen);
981 memmove(attr->pValue, pattr->pValue, pattr->ulValueLen);
982 attr->ulValueLen = pattr->ulValueLen;