Method: PKCS11::Session#C_SignEncryptUpdate

Defined in:
lib/pkcs11/session.rb

#C_SignEncryptUpdate(data, out_size = nil) ⇒ Object

Continues a multiple-part combined signature and encryption operation, processing another data part.

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



629
630
631
# File 'lib/pkcs11/session.rb', line 629

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