EVP Signing and Verifying

From OpenSSLWiki
Revision as of 08:12, 15 January 2015 by Jwalton (talk | contribs) (Deleted content until we have working examples.)
Jump to navigationJump to search

There are two APIs available for performing sign and verify operations. The older EVP_Sign* and EVP_Verify* functions, and the newer and more flexible EVP_DigestSign* and EVP_DigestVerify* functions. Though the APIs are similar, new applications should use the EVP_DigestSign* and EVP_DigestVerify* functions.

The examples below use the new EVP_DigestSign* and EVP_DigestVerify* functions.

Editor's note: the examples were removed because they don't work. Stand by...


See also