Date: Thu, 23 Mar 2017 02:33:45 +0000 (UTC) From: Joseph Mingrone <jrm@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r436753 - in head/security: . py-pyaes Message-ID: <201703230233.v2N2Xj6O051626@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: jrm Date: Thu Mar 23 02:33:45 2017 New Revision: 436753 URL: https://svnweb.freebsd.org/changeset/ports/436753 Log: 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) Added: head/security/py-pyaes/ head/security/py-pyaes/Makefile (contents, props changed) head/security/py-pyaes/distinfo (contents, props changed) head/security/py-pyaes/pkg-descr (contents, props changed) Modified: head/security/Makefile Modified: head/security/Makefile ============================================================================== --- head/security/Makefile Thu Mar 23 02:32:58 2017 (r436752) +++ head/security/Makefile Thu Mar 23 02:33:45 2017 (r436753) @@ -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 Added: head/security/py-pyaes/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-pyaes/Makefile Thu Mar 23 02:33:45 2017 (r436753) @@ -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> Added: head/security/py-pyaes/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-pyaes/distinfo Thu Mar 23 02:33:45 2017 (r436753) @@ -0,0 +1,3 @@ +TIMESTAMP = 1490235520 +SHA256 (pyaes-1.6.0.tar.gz) = 9cd5a54d914b1eebfb14fcb490315214b6a0304d9f1bb47e90d1d8e0b15ce92e +SIZE (pyaes-1.6.0.tar.gz) = 28237 Added: head/security/py-pyaes/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-pyaes/pkg-descr Thu Mar 23 02:33:45 2017 (r436753) @@ -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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201703230233.v2N2Xj6O051626>