Date: Thu, 1 Jan 2015 19:29:34 +0000 (UTC) From: Pawel Pekala <pawel@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r376026 - in head/security: . py-pbkdf2 Message-ID: <201501011929.t01JTYZb006843@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: pawel Date: Thu Jan 1 19:29:33 2015 New Revision: 376026 URL: https://svnweb.freebsd.org/changeset/ports/376026 QAT: https://qat.redports.org/buildarchive/r376026/ Log: 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> Added: head/security/py-pbkdf2/ head/security/py-pbkdf2/Makefile (contents, props changed) head/security/py-pbkdf2/distinfo (contents, props changed) head/security/py-pbkdf2/pkg-descr (contents, props changed) Modified: head/security/Makefile Modified: head/security/Makefile ============================================================================== --- head/security/Makefile Thu Jan 1 19:02:26 2015 (r376025) +++ head/security/Makefile Thu Jan 1 19:29:33 2015 (r376026) @@ -792,6 +792,7 @@ SUBDIR += py-openssl SUBDIR += py-paramiko SUBDIR += py-passlib + SUBDIR += py-pbkdf2 SUBDIR += py-plaso SUBDIR += py-plone.app.openid SUBDIR += py-plone.keyring Added: head/security/py-pbkdf2/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-pbkdf2/Makefile Thu Jan 1 19:29:33 2015 (r376026) @@ -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> Added: head/security/py-pbkdf2/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-pbkdf2/distinfo Thu Jan 1 19:29:33 2015 (r376026) @@ -0,0 +1,2 @@ +SHA256 (pbkdf2-1.3.tar.gz) = ac6397369f128212c43064a2b4878038dab78dab41875364554aaf2a684e6979 +SIZE (pbkdf2-1.3.tar.gz) = 6360 Added: head/security/py-pbkdf2/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-pbkdf2/pkg-descr Thu Jan 1 19:29:33 2015 (r376026) @@ -0,0 +1,2 @@ +This module implements the password-based key derivation function, +PBKDF2, specified in RSA PKCS#5 v2.0.
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201501011929.t01JTYZb006843>