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:
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
|
@ -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
|
||||
|
|
19
security/py-scramp/Makefile
Normal file
19
security/py-scramp/Makefile
Normal 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>
|
3
security/py-scramp/distinfo
Normal file
3
security/py-scramp/distinfo
Normal file
|
@ -0,0 +1,3 @@
|
|||
TIMESTAMP = 1585042269
|
||||
SHA256 (scramp-1.1.0.tar.gz) = 475aa6296deb2737b86e9df9098e8eca0f30c8ad1cc0a8adadb99ef012a5ceba
|
||||
SIZE (scramp-1.1.0.tar.gz) = 20211
|
6
security/py-scramp/pkg-descr
Normal file
6
security/py-scramp/pkg-descr
Normal 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
|
Loading…
Reference in a new issue