diff options
author | Ruslan Makhmatkhanov <rm@FreeBSD.org> | 2013-06-11 18:24:08 +0000 |
---|---|---|
committer | Ruslan Makhmatkhanov <rm@FreeBSD.org> | 2013-06-11 18:24:08 +0000 |
commit | d776ccc36bfd84cd757c687ff00652d3827d1f09 (patch) | |
tree | d40716e41a6d5968b8b1efb3035534cb636ade07 /security/py-slowaes | |
parent | 8da450b77fcbebd23455df88816581de13ba29f6 (diff) |
Notes
Diffstat (limited to 'security/py-slowaes')
-rw-r--r-- | security/py-slowaes/Makefile | 21 | ||||
-rw-r--r-- | security/py-slowaes/distinfo | 2 | ||||
-rw-r--r-- | security/py-slowaes/pkg-descr | 7 |
3 files changed, 30 insertions, 0 deletions
diff --git a/security/py-slowaes/Makefile b/security/py-slowaes/Makefile new file mode 100644 index 000000000000..f8346ef05dd0 --- /dev/null +++ b/security/py-slowaes/Makefile @@ -0,0 +1,21 @@ +# Created by: Neil Booth +# $FreeBSD$ + +PORTNAME= slowaes +DISTVERSION= 0.1a1 +CATEGORIES= security python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= kyuupichan@gmail.com +COMMENT= Implementation of AES in pure Python + +LICENSE= AL2 + +USE_PYTHON= -2.7 +USE_PYDISTUTILS=easy_install +PYDISTUTILS_PKGVERSION= ${DISTVERSION} + +PLIST_FILES= %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%% + +.include <bsd.port.mk> diff --git a/security/py-slowaes/distinfo b/security/py-slowaes/distinfo new file mode 100644 index 000000000000..054a59d0b699 --- /dev/null +++ b/security/py-slowaes/distinfo @@ -0,0 +1,2 @@ +SHA256 (slowaes-0.1a1.tar.gz) = 83658ae54cc116b96f7fdb12fdd0efac3a4e8c7c7064e3fac3f4a881aa54bf09 +SIZE (slowaes-0.1a1.tar.gz) = 7017 diff --git a/security/py-slowaes/pkg-descr b/security/py-slowaes/pkg-descr new file mode 100644 index 000000000000..d6a76972655c --- /dev/null +++ b/security/py-slowaes/pkg-descr @@ -0,0 +1,7 @@ +Implementation of AES in pure Python. + +As such it will be slow (hence the project name) but still useful when +faster ones are not available (for example, for JavaScript clients in +browsers, and Python servers on Google App Engine). + +WWW: https://code.google.com/p/slowaes/ |