Method: PKCS11::Session#C_DecryptDigestUpdate
- Defined in:
- lib/pkcs11/session.rb
#C_DecryptDigestUpdate(data, out_size = nil) ⇒ Object
Continues a multiple-part combined decryption and digest operation, processing another data part.
Decryption and digesting operations must both be active (they must have been initialized with #C_DecryptInit and #C_DigestInit, respectively). This function may be called any number of times in succession, and may be interspersed with #C_DecryptUpdate, #C_DigestUpdate, and #C_DigestKey calls.
618 619 620 |
# File 'lib/pkcs11/session.rb', line 618 def C_DecryptDigestUpdate(data, out_size=nil) @pk.C_DecryptDigestUpdate(@sess, data, out_size) end |