< Rebol Programming

USAGE:

DSA-MAKE-SIGNATURE /sign obj data 

DESCRIPTION:

Creates a DSA signature

DSA-MAKE-SIGNATURE is a native value.

REFINEMENTS

  • /sign
    • obj -- The DSA key object (Type: object)
    • data -- Data to sign (Type: binary)

SOURCE CODE

dsa-make-signature: native[
    "Creates a DSA signature" 
    /sign 
    obj [object!] "The DSA key object" 
    data [binary!] "Data to sign"
]

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