security/py-pyaes: Pure-Python implementation of AES block-cipher and

common modes of operation.

WWW: https://github.com/ricmoo/pyaes

Approved by:	swills (mentor, implicit)
This commit is contained in:
Joseph Mingrone 2017-03-23 02:33:45 +00:00
parent 8f7c859224
commit c0bc9257e9
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=436753
4 changed files with 34 additions and 0 deletions

View File

@ -897,6 +897,7 @@
SUBDIR += py-plone.session
SUBDIR += py-potr
SUBDIR += py-pow
SUBDIR += py-pyaes
SUBDIR += py-pyaff4
SUBDIR += py-pyclamd
SUBDIR += py-pycrypto

View File

@ -0,0 +1,20 @@
# $FreeBSD$
PORTNAME= pyaes
PORTVERSION= 1.6.0
CATEGORIES= security python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= jrm@FreeBSD.org
COMMENT= Pure-Python implementation of AES block-cipher
LICENSE= MIT
LICENSE_FILE= ${WRKSRC}/LICENSE.txt
NO_ARCH= yes
USES= python
USE_PYTHON= autoplist distutils
.include <bsd.port.mk>

View File

@ -0,0 +1,3 @@
TIMESTAMP = 1490235520
SHA256 (pyaes-1.6.0.tar.gz) = 9cd5a54d914b1eebfb14fcb490315214b6a0304d9f1bb47e90d1d8e0b15ce92e
SIZE (pyaes-1.6.0.tar.gz) = 28237

View File

@ -0,0 +1,10 @@
pyaes is a pure-Python implmentation of the AES block cipher algorithm and the
common modes of operation (CBC, CFB, CTR, ECB and OFB).
- Supports all AES key sizes
- Supports all AES common modes
- Pure-Python (no external dependancies)
- BlockFeeder API allows streams to easily be encrypted and decrypted
- Python 2.x and 3.x support
WWW: https://github.com/ricmoo/pyaes