< Rebol Programming

USAGE:

DSA-VERIFY-SIGNATURE obj data signature 

DESCRIPTION:

Verifies if the DSA signature of a binary is correct

DSA-VERIFY-SIGNATURE is a native value.

ARGUMENTS

  • obj -- The DSA key object (Type: object)
  • data -- Data to which the signature applies (Type: binary)
  • signature -- Signature to check (Type: object)

SOURCE CODE

dsa-verify-signature: native[
    {Verifies if the DSA signature of a binary is correct} 
    obj [object!] "The DSA key object" 
    data [binary!] "Data to which the signature applies" 
    signature [object!] "Signature to check"
]

This article is issued from Wikibooks. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.