1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-27 00:57:50 +00:00

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>
This commit is contained in:
Pawel Pekala 2015-01-01 19:29:33 +00:00
parent db3041d582
commit 50bbb897e1
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=376026
4 changed files with 23 additions and 0 deletions

View File

@ -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

View File

@ -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>

View File

@ -0,0 +1,2 @@
SHA256 (pbkdf2-1.3.tar.gz) = ac6397369f128212c43064a2b4878038dab78dab41875364554aaf2a684e6979
SIZE (pbkdf2-1.3.tar.gz) = 6360

View File

@ -0,0 +1,2 @@
This module implements the password-based key derivation function,
PBKDF2, specified in RSA PKCS#5 v2.0.