diff options
author | wg <wg@FreeBSD.org> | 2018-06-15 20:21:31 +0800 |
---|---|---|
committer | wg <wg@FreeBSD.org> | 2018-06-15 20:21:31 +0800 |
commit | 34b628dcffac919f601928cb34b08b4f156f9964 (patch) | |
tree | ee0e16ba7cf8f24171f1c91f567cd38bb6b65bf0 /security | |
parent | 65d7efb7bdf349f143173883af91f9a63bafe946 (diff) | |
download | freebsd-ports-gnome-34b628dcffac919f601928cb34b08b4f156f9964.tar.gz freebsd-ports-gnome-34b628dcffac919f601928cb34b08b4f156f9964.tar.zst freebsd-ports-gnome-34b628dcffac919f601928cb34b08b4f156f9964.zip |
security/py-fido2
Provides library functionality for communicating with a FIDO device over USB
as well as verifying attestation and assertion signatures.
WWW: https://github.com/Yubico/python-fido2
Diffstat (limited to 'security')
-rw-r--r-- | security/Makefile | 1 | ||||
-rw-r--r-- | security/py-fido2/Makefile | 18 | ||||
-rw-r--r-- | security/py-fido2/distinfo | 3 | ||||
-rw-r--r-- | security/py-fido2/pkg-descr | 4 |
4 files changed, 26 insertions, 0 deletions
diff --git a/security/Makefile b/security/Makefile index c7a5fe0e0a0d..461abbd4d92a 100644 --- a/security/Makefile +++ b/security/Makefile @@ -934,6 +934,7 @@ SUBDIR += py-ed25519ll SUBDIR += py-fail2ban SUBDIR += py-fchksum + SUBDIR += py-fido2 SUBDIR += py-first-server SUBDIR += py-flask-httpauth SUBDIR += py-flask-kerberos diff --git a/security/py-fido2/Makefile b/security/py-fido2/Makefile new file mode 100644 index 000000000000..577b53abdec7 --- /dev/null +++ b/security/py-fido2/Makefile @@ -0,0 +1,18 @@ +# $FreeBSD$ + +PORTNAME= fido2 +PORTVERSION= 0.3.0 +CATEGORIES= security python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= python@FreeBSD.org +COMMENT= Provides library functionality for FIDO 2.0 + +LICENSE= BSD2CLAUSE + +USES= python +USE_PYTHON= autoplist distutils +NO_ARCH= yes + +.include <bsd.port.mk> diff --git a/security/py-fido2/distinfo b/security/py-fido2/distinfo new file mode 100644 index 000000000000..e1d8f509ba84 --- /dev/null +++ b/security/py-fido2/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1529066291 +SHA256 (fido2-0.3.0.tar.gz) = 32c0db375458853d68cbbeb04861c412a05c22c873236a0c4f71296dc983ab35 +SIZE (fido2-0.3.0.tar.gz) = 125907 diff --git a/security/py-fido2/pkg-descr b/security/py-fido2/pkg-descr new file mode 100644 index 000000000000..f1e4463716b5 --- /dev/null +++ b/security/py-fido2/pkg-descr @@ -0,0 +1,4 @@ +Provides library functionality for communicating with a FIDO device over USB +as well as verifying attestation and assertion signatures. + +WWW: https://github.com/Yubico/python-fido2 |