diff options
author | pawel <pawel@FreeBSD.org> | 2015-01-02 03:29:33 +0800 |
---|---|---|
committer | pawel <pawel@FreeBSD.org> | 2015-01-02 03:29:33 +0800 |
commit | a2b7ab47f0a21fa817732dafffdbc374c71bea7d (patch) | |
tree | 7f3f63f4a784b64be0ffe9b18af120450bbed2f5 /security/py-pbkdf2 | |
parent | d690467098204c796754d156e36ec11cf9aaa7ba (diff) | |
download | freebsd-ports-gnome-a2b7ab47f0a21fa817732dafffdbc374c71bea7d.tar.gz freebsd-ports-gnome-a2b7ab47f0a21fa817732dafffdbc374c71bea7d.tar.zst freebsd-ports-gnome-a2b7ab47f0a21fa817732dafffdbc374c71bea7d.zip |
This module implements the password-based key derivation function,
PBKDF2, specified in RSA PKCS#5 v2.0.
PR: 196048
Submitted by: Neil Booth <kyuupichan@gmail.com>
Diffstat (limited to 'security/py-pbkdf2')
-rw-r--r-- | security/py-pbkdf2/Makefile | 18 | ||||
-rw-r--r-- | security/py-pbkdf2/distinfo | 2 | ||||
-rw-r--r-- | security/py-pbkdf2/pkg-descr | 2 |
3 files changed, 22 insertions, 0 deletions
diff --git a/security/py-pbkdf2/Makefile b/security/py-pbkdf2/Makefile new file mode 100644 index 000000000000..9d57997b95fc --- /dev/null +++ b/security/py-pbkdf2/Makefile @@ -0,0 +1,18 @@ +# Created by: Neil Booth <kyuupichan@gmail.com> +# $FreeBSD$ + +PORTNAME= pbkdf2 +PORTVERSION= 1.3 +CATEGORIES= security python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= kyuupichan@gmail.com +COMMENT= PKCS5 v2.0 PBKDF2 Module + +LICENSE= MIT + +USES= python +USE_PYTHON= distutils autoplist + +.include <bsd.port.mk> diff --git a/security/py-pbkdf2/distinfo b/security/py-pbkdf2/distinfo new file mode 100644 index 000000000000..b84dfda5312a --- /dev/null +++ b/security/py-pbkdf2/distinfo @@ -0,0 +1,2 @@ +SHA256 (pbkdf2-1.3.tar.gz) = ac6397369f128212c43064a2b4878038dab78dab41875364554aaf2a684e6979 +SIZE (pbkdf2-1.3.tar.gz) = 6360 diff --git a/security/py-pbkdf2/pkg-descr b/security/py-pbkdf2/pkg-descr new file mode 100644 index 000000000000..a7c64e9a44ea --- /dev/null +++ b/security/py-pbkdf2/pkg-descr @@ -0,0 +1,2 @@ +This module implements the password-based key derivation function, +PBKDF2, specified in RSA PKCS#5 v2.0. |