Method: PKCS11::Session#C_Verify

Defined in:
lib/pkcs11/session.rb

#C_Verify(data, out_size = nil) ⇒ Object

Verifies a signature in a single-part operation, where the signature is an appendix to the data.

See #verify for convenience.


511
512
513
# File 'lib/pkcs11/session.rb', line 511

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