DSA.php
Pure-PHP FIPS 186-4 compliant implementation of DSA.
PHP version 5
Here's an example of how to create signatures and verify signatures with this library:
getPublicKey();
$plaintext = 'terrafrost';
$signature = $private->sign($plaintext);
echo $public->verify($plaintext, $signature) ? 'verified' : 'unverified';
?>
-
category
-
-
author
-
-
copyright
-
-
license
-
http://www.opensource.org/licenses/mit-license.html MIT License
-
link
-
http://phpseclib.sourceforge.net
Table of Contents
Classes
- DSA
- Pure-PHP FIPS 186-4 compliant implementation of DSA.