SYNOPSIS
use Crypt::Nettle;
ABSTRACT
Crypt::Nettle provides an object interface to the C nettle library. It currently supports message digests (including HMAC), symmetric encryption and decryption, pseudo-random number generation, and RSA public-key crypto.In the future, it should also support DSA for public-key signatures.
MESSAGE DIGESTS (HASH FUNCTIONS)
See Crypt::Nettle::Hash for digest functions and HMAC.SYMMETRIC ENCRYPTION
See Crypt::Nettle::Cipher for symmetric encryption and decryption.RANDOM NUMBER GENERATION
See Crypt::Nettle::Yarrow for a cryptographic random number generator.ASYMMETRIC CRYPTOGRAPHY
The only public-key crypto algorithm supported by Crypt::Nettle at the moment is RSA. See Crypt::Nettle::RSA for details.BUGS AND FEEDBACK
Crypt::Nettle has no known bugs, mostly because no one has reported any. Please mail to the author ([email protected]) with your contributions, comments, suggestions, bug reports or complaints.AUTHORS AND CONTRIBUTORS
Daniel Kahn Gillmor <[email protected]>COPYRIGHT AND LICENSE
Copyright AX Daniel Kahn GillmorCrypt::Nettle is free software, you may redistribute it and/or modify it under the GPL version 2 or later (your choice). Please see the COPYING file for the full text of the GPL.
ACKNOWLEDGEMENTS
This module was initially inspired by the GCrypt.pm bindings made by Alessandro Ranellucci.DISCLAIMER
This software is provided by the copyright holders and contributors ``as is'' and any express or implied warranties, including, but not limited to, the implied warranties of merchantability and fitness for a particular purpose are disclaimed. In no event shall the contributors be liable for any direct, indirect, incidental, special, exemplary, or consequential damages (including, but not limited to, procurement of substitute goods or services; loss of use, data, or profits; or business interruption) however caused and on any theory of liability, whether in contract, strict liability, or tort (including negligence or otherwise) arising in any way out of the use of this software, even if advised of the possibility of such damage.