Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 26 Jul 2018 16:51:19 +0000 (UTC)
From:      Dan Langille <dvl@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r475388 - in head/security: . py-python-jose
Message-ID:  <201807261651.w6QGpJ59025085@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: dvl
Date: Thu Jul 26 16:51:18 2018
New Revision: 475388
URL: https://svnweb.freebsd.org/changeset/ports/475388

Log:
  A JOSE implementation in Python
  
  The JavaScript Object Signing and Encryption (JOSE) technologies - JSON Web
  Signature (JWS), JSON Web Encryption (JWE), JSON Web Key (JWK), and JSON Web
  Algorithms (JWA) - collectively can be used to encrypt and/or sign content
  using a variety of algorithms. While the full set of permutations is extremely
  large, and might be daunting to some, it is expected that most applications
  will only use a small set of algorithms to meet their needs.

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

Modified: head/security/Makefile
==============================================================================
--- head/security/Makefile	Thu Jul 26 16:47:07 2018	(r475387)
+++ head/security/Makefile	Thu Jul 26 16:51:18 2018	(r475388)
@@ -1005,6 +1005,7 @@
     SUBDIR += py-pyscard
     SUBDIR += py-pysha3
     SUBDIR += py-python-gnupg
+    SUBDIR += py-python-jose
     SUBDIR += py-python-nss
     SUBDIR += py-python-openid
     SUBDIR += py-python-registry

Added: head/security/py-python-jose/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/py-python-jose/Makefile	Thu Jul 26 16:51:18 2018	(r475388)
@@ -0,0 +1,24 @@
+# Created by: Dan Langille <dvl@sourcefire.com>
+# $FreeBSD$
+
+PORTNAME=       python-jose
+PORTVERSION=	3.0.0
+CATEGORIES=	security
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	dvl@FreeBSD.org
+COMMENT=	Client SDK for TIP API which require Authentication Tokens
+
+LICENSE=	MIT
+
+USES=		python
+USE_PYTHON=	distutils autoplist
+
+RUN_DEPENDS+=	${PYTHON_PKGNAMEPREFIX}future>0:devel/py-future@${PY_FLAVOR}
+RUN_DEPENDS+=	${PYTHON_PKGNAMEPREFIX}ecdsa>0:security/py-ecdsa@${PY_FLAVOR}
+RUN_DEPENDS+=	${PYTHON_PKGNAMEPREFIX}pycryptodome>0:security/py-pycryptodome@${PY_FLAVOR}
+RUN_DEPENDS+=	${PYTHON_PKGNAMEPREFIX}rsa>0:security/py-rsa@${PY_FLAVOR}
+RUN_DEPENDS+=	${PYTHON_PKGNAMEPREFIX}six>0:devel/py-six@${PY_FLAVOR}
+
+.include <bsd.port.mk>

Added: head/security/py-python-jose/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/py-python-jose/distinfo	Thu Jul 26 16:51:18 2018	(r475388)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1532029092
+SHA256 (python-jose-3.0.0.tar.gz) = e8255fb3cc524c04f4c790547a6215468f2a32d3a866424175523359e69f3aeb
+SIZE (python-jose-3.0.0.tar.gz) = 19180

Added: head/security/py-python-jose/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/py-python-jose/pkg-descr	Thu Jul 26 16:51:18 2018	(r475388)
@@ -0,0 +1,20 @@
+A JOSE implementation in Python
+
+The JavaScript Object Signing and Encryption (JOSE) technologies - JSON Web 
+Signature (JWS), JSON Web Encryption (JWE), JSON Web Key (JWK), and JSON Web
+Algorithms (JWA) - collectively can be used to encrypt and/or sign content
+using a variety of algorithms. While the full set of permutations is extremely
+large, and might be daunting to some, it is expected that most applications
+will only use a small set of algorithms to meet their needs.
+
+Usage
+
+>>> from jose import jwt
+>>> token = jwt.encode({'key': 'value'}, 'secret', algorithm='HS256')
+u'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJrZXkiOiJ2YWx1ZSJ9.FG-8UppwHaFp1LgRYQQeS6EDQF7_6-bMFegNucHjmWg'
+
+>>> jwt.decode(token, 'secret', algorithms=['HS256'])
+{u'key': u'value'}
+
+
+WWW: https://github.com/mpdavis/python-jose



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201807261651.w6QGpJ59025085>