A Python implementation of the SCRAM authentication protocol defined

by RFC 5802 and RFC 7677. Scramp supports the following mechanisms:
  * SCRAM-SHA-256
  * SCRAM-SHA-1

WWW: https://github.com/tlocke/scramp
This commit is contained in:
Wen Heping 2020-03-24 13:27:34 +00:00
parent 06eb7424c5
commit fd8c2aae60
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=529045
4 changed files with 29 additions and 0 deletions

View file

@ -977,6 +977,7 @@
SUBDIR += py-rsa
SUBDIR += py-safe
SUBDIR += py-scp
SUBDIR += py-scramp
SUBDIR += py-scrypt
SUBDIR += py-securesystemslib
SUBDIR += py-service_identity

View file

@ -0,0 +1,19 @@
# $FreeBSD$
PORTNAME= scramp
PORTVERSION= 1.1.0
CATEGORIES= security python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= wen@FreeBSD.org
COMMENT= Pure-Python implementation of the SCRAM authentication protocol
LICENSE= MIT
USES= python:3.5+
USE_PYTHON= autoplist distutils
NO_ARCH= yes
.include <bsd.port.mk>

View file

@ -0,0 +1,3 @@
TIMESTAMP = 1585042269
SHA256 (scramp-1.1.0.tar.gz) = 475aa6296deb2737b86e9df9098e8eca0f30c8ad1cc0a8adadb99ef012a5ceba
SIZE (scramp-1.1.0.tar.gz) = 20211

View file

@ -0,0 +1,6 @@
A Python implementation of the SCRAM authentication protocol defined
by RFC 5802 and RFC 7677. Scramp supports the following mechanisms:
* SCRAM-SHA-256
* SCRAM-SHA-1
WWW: https://github.com/tlocke/scramp