Method: PKCS11::Session#C_SetOperationState

Defined in:
lib/pkcs11/session.rb

#C_SetOperationState(state, enc_key = nil, auth_key = nil) ⇒ PKCS11::Session Also known as: set_operation_state

Restores the cryptographic operations state of a session from a string of bytes obtained with #C_GetOperationState.

Parameters:

  • state (String)

    previously stored session state

  • encryption (PKCS11::Object)

    key for sessions stored without keys

  • authentication (PKCS11::Object)

    key for sessions stored without keys

Returns:

[View source]

759
760
761
762
# File 'lib/pkcs11/session.rb', line 759

def C_SetOperationState(state, enc_key=nil, auth_key=nil)
  @pk.C_SetOperationState(@sess, state, enc_key||0, auth_key||0)
  self
end