Method: PKCS11::Session#C_DecryptFinal

Defined in:
lib/pkcs11/session.rb

#C_DecryptFinal(out_size = nil) ⇒ String

Finishes a multiple-part decryption operation.

See #decrypt for convenience.

Parameters:

  • out_size (Integer, nil) (defaults to: nil)

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

Returns:

  • (String)


353
354
355
# File 'lib/pkcs11/session.rb', line 353

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