Method: PKCS11::Session#C_DigestEncryptUpdate

Defined in:
lib/pkcs11/session.rb

#C_DigestEncryptUpdate(data, out_size = nil) ⇒ Object

Continues multiple-part digest and encryption operations, processing another data part.

Digest and encryption operations must both be active (they must have been initialized with #C_DigestInit and #C_EncryptInit, respectively). This function may be called any number of times in succession, and may be interspersed with #C_DigestUpdate, #C_DigestKey, and #C_EncryptUpdate calls.



607
608
609
# File 'lib/pkcs11/session.rb', line 607

def C_DigestEncryptUpdate(data, out_size=nil)
  @pk.C_DigestEncryptUpdate(@sess, data, out_size)
end