Lines Matching defs:mechanism
607 * PK11 CKM_RSA_X_509 mechanism pads 0's at the beginning.
692 * PK11 CKM_RSA_X_509 mechanism pads 0's at the beginning.
844 * C_Decrypt pk11 APIs. Note that CKM_RSA_X_509 mechanism is used here.
1994 * since with the keys by reference mechanism, private components are
2591 CK_MECHANISM mechanism = {CKM_DH_PKCS_KEY_PAIR_GEN, NULL_PTR, 0};
2671 &mechanism,
2824 CK_MECHANISM mechanism = {CKM_DH_PKCS_DERIVE, NULL_PTR, 0};
2856 mechanism.ulParameterLen = BN_num_bytes(pub_key);
2857 mechanism.pParameter = OPENSSL_malloc(mechanism.ulParameterLen);
2858 if (mechanism.pParameter == NULL)
2863 BN_bn2bin(pub_key, mechanism.pParameter);
2880 &mechanism,
2931 * CKM_DH_PKCS_DERIVE mechanism is not supposed to strip
2967 if (mechanism.pParameter)
2969 OPENSSL_free(mechanism.pParameter);
2970 mechanism.pParameter = NULL;