Method: PKCS11::Session#C_SignRecoverInit

Defined in:
lib/pkcs11/session.rb

#C_SignRecoverInit(mechanism, key) ⇒ Object

Initializes a signature operation, where the data can be recovered from the signature

See #sign_recover for convenience.


549
550
551
552
# File 'lib/pkcs11/session.rb', line 549

def C_SignRecoverInit(mechanism, key)
  @pk.C_SignRecoverInit(@sess, to_mechanism(mechanism), key)
  self
end