Lines Matching refs:pMechanism
42 C_GenerateKey(CK_SESSION_HANDLE hSession, CK_MECHANISM_PTR pMechanism, in C_GenerateKey() argument
52 pkcs11_is_dismech(fast_slot, pMechanism->mechanism)) { in C_GenerateKey()
55 return (fast_funcs->C_GenerateKey(hSession, pMechanism, in C_GenerateKey()
73 if (pkcs11_is_dismech(slotid, pMechanism->mechanism)) { in C_GenerateKey()
79 pMechanism, pTemplate, ulCount, phKey); in C_GenerateKey()
97 C_GenerateKeyPair(CK_SESSION_HANDLE hSession, CK_MECHANISM_PTR pMechanism, in C_GenerateKeyPair() argument
110 pkcs11_is_dismech(fast_slot, pMechanism->mechanism)) { in C_GenerateKeyPair()
113 return (fast_funcs->C_GenerateKeyPair(hSession, pMechanism, in C_GenerateKeyPair()
133 if (pkcs11_is_dismech(slotid, pMechanism->mechanism)) { in C_GenerateKeyPair()
139 pMechanism, pPublicKeyTemplate, ulPublicKeyAttributeCount, in C_GenerateKeyPair()
158 C_WrapKey(CK_SESSION_HANDLE hSession, CK_MECHANISM_PTR pMechanism, in C_WrapKey() argument
169 pkcs11_is_dismech(fast_slot, pMechanism->mechanism)) { in C_WrapKey()
172 return (fast_funcs->C_WrapKey(hSession, pMechanism, in C_WrapKey()
191 if (pkcs11_is_dismech(slotid, pMechanism->mechanism)) { in C_WrapKey()
197 pMechanism, hWrappingKey, hKey, pWrappedKey, pulWrappedKeyLen); in C_WrapKey()
214 C_UnwrapKey(CK_SESSION_HANDLE hSession, CK_MECHANISM_PTR pMechanism, in C_UnwrapKey() argument
226 pkcs11_is_dismech(fast_slot, pMechanism->mechanism)) { in C_UnwrapKey()
229 return (fast_funcs->C_UnwrapKey(hSession, pMechanism, in C_UnwrapKey()
248 if (pkcs11_is_dismech(slotid, pMechanism->mechanism)) { in C_UnwrapKey()
254 pMechanism, hUnwrappingKey, pWrappedKey, ulWrappedKeyLen, in C_UnwrapKey()
272 C_DeriveKey(CK_SESSION_HANDLE hSession, CK_MECHANISM_PTR pMechanism, in C_DeriveKey() argument
283 pkcs11_is_dismech(fast_slot, pMechanism->mechanism)) { in C_DeriveKey()
286 return (fast_funcs->C_DeriveKey(hSession, pMechanism, in C_DeriveKey()
304 if (pkcs11_is_dismech(slotid, pMechanism->mechanism)) { in C_DeriveKey()
310 pMechanism, hBaseKey, pTemplate, ulAttributeCount, phKey); in C_DeriveKey()