1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-25 04:43:33 +00:00

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/

PR:		179447
Submitted by:	Neil Booth <kyuupichan@gmail.com>
This commit is contained in:
Ruslan Makhmatkhanov 2013-06-11 18:24:08 +00:00
parent 8da450b77f
commit d776ccc36b
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=320620
4 changed files with 31 additions and 0 deletions

View File

@ -774,6 +774,7 @@
SUBDIR += py-pysha3
SUBDIR += py-python-registry
SUBDIR += py-rsa
SUBDIR += py-slowaes
SUBDIR += py-ssh
SUBDIR += py-sslstrip
SUBDIR += py-tlslite

View File

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

View File

@ -0,0 +1,2 @@
SHA256 (slowaes-0.1a1.tar.gz) = 83658ae54cc116b96f7fdb12fdd0efac3a4e8c7c7064e3fac3f4a881aa54bf09
SIZE (slowaes-0.1a1.tar.gz) = 7017

View File

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