Method: PKCS11::Session#C_SetOperationState
- Defined in:
- lib/pkcs11/session.rb
permalink #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.
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 |