Method: PKCS11::Session#C_EncryptUpdate

Defined in:
lib/pkcs11/session.rb

#C_EncryptUpdate(data, out_size = nil) ⇒ String

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

See #encrypt for convenience

Parameters:

  • (defaults to: nil)

    The buffer size for output data provided to the library. If nil, size is determined automatically.

Returns:



277
278
279
# File 'lib/pkcs11/session.rb', line 277

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