Blame README

Packit 3d7ff3
HMAC is used for message integrity checks between two parties that
Packit 3d7ff3
share a secret key, and works in combination with some other Digest
Packit 3d7ff3
algorithm, usually MD5 or SHA-1.  The HMAC mechanism is described in
Packit 3d7ff3
RFC 2104.
Packit 3d7ff3
Packit 3d7ff3
The Digest::HMAC module follow the common Digest:: interface, but the
Packit 3d7ff3
constructor takes the secret key and the name of some other simple
Packit 3d7ff3
Digest:: module as argument.
Packit 3d7ff3
Packit 3d7ff3
You will need perl version 5.004 or better to install these modules.
Packit 3d7ff3
The Digest::MD5 module and Digest::SHA1 module must be installed.
Packit 3d7ff3
Packit 3d7ff3
Copyright 1998-2001 Gisle Aas.
Packit 3d7ff3
Copyright 1998 Graham Barr.
Packit 3d7ff3
Packit 3d7ff3
This library is free software; you can redistribute it and/or
Packit 3d7ff3
modify it under the same terms as Perl itself.