diff options
author | miwi <miwi@FreeBSD.org> | 2010-06-07 14:59:09 +0800 |
---|---|---|
committer | miwi <miwi@FreeBSD.org> | 2010-06-07 14:59:09 +0800 |
commit | 57d37788f4ff9d5fbf100253b5dda4dce7b29ff0 (patch) | |
tree | 3423e6743b64b80d416ee731cab16495edd0ed70 /security/Makefile | |
parent | 9871c645d41a709d7791281aed2d6f04f8f08f70 (diff) | |
download | freebsd-ports-gnome-57d37788f4ff9d5fbf100253b5dda4dce7b29ff0.tar.gz freebsd-ports-gnome-57d37788f4ff9d5fbf100253b5dda4dce7b29ff0.tar.zst freebsd-ports-gnome-57d37788f4ff9d5fbf100253b5dda4dce7b29ff0.zip |
PBKDF2 is a secure password hashing algorithm that uses the techniques of
"key strengthening" to make the complexity of a brute-force attack arbitrarily
high. PBKDF2 uses any other cryptographic hash or cipher (by convention,
usually HMAC-SHA1, but Crypt::PBKDF2 is fully pluggable), and allows for an
arbitrary number of iterations of the hashing function, and a nearly unlimited
output hash size (up to 2**32 - 1 times the size of the output of the backend
hash). The hash is salted, as any password hash should be, and the salt may
also be of arbitrary size.
See also: RFC2898, PKCS#5 version 2.0: http://tools.ietf.org/html/rfc2898
WWW: http://search.cpan.org/dist/Crypt-PBKDF2/
PR: ports/146847
Submitted by: Victor Popov <v.a.popov at gmail.com>
Diffstat (limited to 'security/Makefile')
-rw-r--r-- | security/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/security/Makefile b/security/Makefile index 410ae4831036..f7d1a9696db4 100644 --- a/security/Makefile +++ b/security/Makefile @@ -445,6 +445,7 @@ SUBDIR += p5-Crypt-OpenSSL-RSA SUBDIR += p5-Crypt-OpenSSL-Random SUBDIR += p5-Crypt-OpenSSL-X509 + SUBDIR += p5-Crypt-PBKDF2 SUBDIR += p5-Crypt-PGPSimple SUBDIR += p5-Crypt-PassGen SUBDIR += p5-Crypt-PasswdMD5 |