Method: PKCS11::Session#C_SignUpdate

Defined in:
lib/pkcs11/session.rb

#C_SignUpdate(data) ⇒ PKCS11::Session

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

See #sign for convenience.

Returns:

[View source]

472
473
474
475
# File 'lib/pkcs11/session.rb', line 472

def C_SignUpdate(data)
  @pk.C_SignUpdate(@sess, data)
  self
end