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
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

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