Searched defs:a_key_template (Results 1 - 2 of 2) sorted by relevance

/solaris-userland-s11u3/components/openssl/common/engines/pkcs11/
H A De_pk11_pub.c1593 CK_ATTRIBUTE a_key_template[] = local
1606 a_key_template[0].pValue = &o_key;
1607 a_key_template[1].pValue = &k_type;
1609 a_key_template[5].ulValueLen = BN_num_bytes(rsa->n);
1610 a_key_template[5].pValue = (CK_VOID_PTR)OPENSSL_malloc(
1611 (size_t)a_key_template[5].ulValueLen);
1612 if (a_key_template[5].pValue == NULL)
1618 BN_bn2bin(rsa->n, a_key_template[5].pValue);
1620 a_key_template[6].ulValueLen = BN_num_bytes(rsa->e);
1621 a_key_template[
1742 CK_ATTRIBUTE a_key_template[] = local
2257 CK_ATTRIBUTE a_key_template[] = local
2386 CK_ATTRIBUTE a_key_template[] = local
[all...]
H A De_pk11.c2666 CK_ATTRIBUTE a_key_template[] = local
2690 a_key_template[0].pValue = &obj_key;
2691 a_key_template[1].pValue = &key_type;
2692 a_key_template[5].pValue = (void *) key;
2693 a_key_template[5].ulValueLen = (unsigned long) ctx->key_len;
2696 a_key_template, ul_key_attr_count, &h_key);

Completed in 23 milliseconds