Class: PKCS11::Session::DigestCipher

Inherits:
Cipher
  • Object
show all
Defined in:
lib/pkcs11/session.rb

Instance Method Summary collapse

Methods inherited from Cipher

#update

Instance Method Details

#digest_key(key) ⇒ String

Continues a multiple-part message-digesting operation by digesting the value of a secret key.

Parameters:

Returns:

  • (String)

    output data



207
208
209
# File 'lib/pkcs11/session.rb', line 207

def digest_key(key)
  @digest_key_block.call(key)
end