[][src]Type Definition pkcs11::functions::C_SignInit

type C_SignInit = extern "C" fn(hSession: CK_SESSION_HANDLE, pMechanism: CK_MECHANISM_PTR, hKey: CK_OBJECT_HANDLE) -> CK_RV;

C_SignInit initializes a signature (private key encryption) operation, where the signature is (will be) an appendix to the data, and plaintext cannot be recovered from the signature.

Function Parameters

  • hSession: the session's handle
  • pMechanism: the signature mechanism
  • hKey: handle of signature key