1c4d9cba5f
Overview of Changes: * Change version numbering to match PEP-0440 * Unpadding happens after MAC validation to prevent padding oracle attacks * Added Encoding options to all crypto operations to select whether or not not encoding should be used. * Python version setup improved for PyPi. * AttachedSign with empty nonce now correctly functions. While here limit python version to 2.x, because it doesn't build with 3.x PR: 204576 Submitted by: douglas@douglasthrift.net (maintainer)
22 lines
521 B
Makefile
22 lines
521 B
Makefile
# Created by: Douglas Thrift <douglas@douglasthrift.net>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= keyczar
|
|
PORTVERSION= 0.715
|
|
CATEGORIES= security python
|
|
MASTER_SITES= CHEESESHOP
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
DISTNAME= python-${PORTNAME}-${PORTVERSION}
|
|
|
|
MAINTAINER= douglas@douglasthrift.net
|
|
COMMENT= Toolkit for safe and simple cryptography
|
|
|
|
LICENSE= APACHE20
|
|
|
|
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pycrypto>=2.0:${PORTSDIR}/security/py-pycrypto
|
|
|
|
NO_ARCH= yes
|
|
USES= python:2
|
|
USE_PYTHON= autoplist distutils
|
|
|
|
.include <bsd.port.mk>
|