svn commit: r449667 - in head/security: . py-pyaxo

Richard Gallamore ultima at FreeBSD.org
Mon Sep 11 21:13:55 UTC 2017


Author: ultima
Date: Mon Sep 11 21:13:54 2017
New Revision: 449667
URL: https://svnweb.freebsd.org/changeset/ports/449667

Log:
  The Double Ratchet Algorithm is a protocol (similar to OTR) that provides for
  perfect forward secrecy in (a)synchronous communications. It uses triple
  Diffie-Hellman for authentication and ECDHE for perfect forward secrecy. The
  protocol is lighter and more robust than the OTR protocol - providing better
  forward and future secrecy, as well as deniability.
  
  The protocol was developed by Trevor Perrin and Moxie Marlinspike. Its chief
  use currently is in the Open Whisper Systems Signal package.
  
  WWW: https://github.com/rxcomm/pyaxo
  
  PR:		222040
  Submitted by:	Yuri Victorovich (maintainer)
  Reviewed by:	lifanov (mentor), matthew (mentor), koobs, sunpoet
  Approved by:	lifanov (mentor), matthew (mentor), koobs
  Differential Revision:	https://reviews.freebsd.org/D12310

Added:
  head/security/py-pyaxo/
  head/security/py-pyaxo/Makefile   (contents, props changed)
  head/security/py-pyaxo/distinfo   (contents, props changed)
  head/security/py-pyaxo/pkg-descr   (contents, props changed)
Modified:
  head/security/Makefile

Modified: head/security/Makefile
==============================================================================
--- head/security/Makefile	Mon Sep 11 21:02:27 2017	(r449666)
+++ head/security/Makefile	Mon Sep 11 21:13:54 2017	(r449667)
@@ -927,6 +927,7 @@
     SUBDIR += py-pow
     SUBDIR += py-pyaes
     SUBDIR += py-pyaff4
+    SUBDIR += py-pyaxo
     SUBDIR += py-pyclamd
     SUBDIR += py-pycrypto
     SUBDIR += py-pycryptodome

Added: head/security/py-pyaxo/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/py-pyaxo/Makefile	Mon Sep 11 21:13:54 2017	(r449667)
@@ -0,0 +1,23 @@
+# Created by: Yuri Victorovich
+# $FreeBSD$
+
+PORTNAME=	pyaxo
+PORTVERSION=	0.7.7
+CATEGORIES=	security net python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	yuri at rawbw.com
+COMMENT=	Python implementation of the Axolotl ratchet protocol
+
+LICENSE=	BSD3CLAUSE
+LICENSE_FILE=	${WRKSRC}/COPYING
+
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}passlib>=1.6.1:security/py-passlib \
+		${PYTHON_PKGNAMEPREFIX}pynacl>=1.0.1:security/py-pynacl
+
+USES=		python:2.7
+USE_PYTHON=	autoplist distutils
+NO_ARCH=	yes
+
+.include <bsd.port.mk>

Added: head/security/py-pyaxo/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/py-pyaxo/distinfo	Mon Sep 11 21:13:54 2017	(r449667)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1504483719
+SHA256 (pyaxo-0.7.7.tar.gz) = f0eafd73e76fc9fa8dc403a68254b7f712a311a6208f812f27f8acc4de8aaaa1
+SIZE (pyaxo-0.7.7.tar.gz) = 63293

Added: head/security/py-pyaxo/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/py-pyaxo/pkg-descr	Mon Sep 11 21:13:54 2017	(r449667)
@@ -0,0 +1,10 @@
+The Double Ratchet Algorithm is a protocol (similar to OTR) that provides for
+perfect forward secrecy in (a)synchronous communications. It uses triple
+Diffie-Hellman for authentication and ECDHE for perfect forward secrecy. The
+protocol is lighter and more robust than the OTR protocol - providing better
+forward and future secrecy, as well as deniability.
+
+The protocol was developed by Trevor Perrin and Moxie Marlinspike. Its chief
+use currently is in the Open Whisper Systems Signal package.
+
+WWW: https://github.com/rxcomm/pyaxo


More information about the svn-ports-all mailing list