diff options
Diffstat (limited to 'security/pwdsafety')
-rw-r--r-- | security/pwdsafety/Makefile | 21 | ||||
-rw-r--r-- | security/pwdsafety/distinfo | 5 | ||||
-rw-r--r-- | security/pwdsafety/pkg-descr | 11 |
3 files changed, 37 insertions, 0 deletions
diff --git a/security/pwdsafety/Makefile b/security/pwdsafety/Makefile new file mode 100644 index 000000000000..c143543bf2cc --- /dev/null +++ b/security/pwdsafety/Makefile @@ -0,0 +1,21 @@ +PORTNAME= pwdsafety +DISTVERSIONPREFIX= v +DISTVERSION= 0.4.0 +PORTREVISION= 1 +CATEGORIES= security + +MAINTAINER= olgeni@FreeBSD.org +COMMENT= Command line tool that checks how much a password is safe +WWW= https://github.com/edoardottt/pwdsafety + +LICENSE= GPLv3 +LICENSE_FILE= ${WRKSRC}/LICENSE + +USES= go:modules + +GO_MODULE= github.com/edoardottt/pwdsafety +GO_TARGET= ./cmd/pwdsafety + +PLIST_FILES= bin/pwdsafety + +.include <bsd.port.mk> diff --git a/security/pwdsafety/distinfo b/security/pwdsafety/distinfo new file mode 100644 index 000000000000..1bae896cbab4 --- /dev/null +++ b/security/pwdsafety/distinfo @@ -0,0 +1,5 @@ +TIMESTAMP = 1752333153 +SHA256 (go/security_pwdsafety/pwdsafety-v0.4.0/v0.4.0.mod) = e24364d55d617dd7b5b727b94d836e02a2c1994d731f8e7f839e9a4b6e4728fc +SIZE (go/security_pwdsafety/pwdsafety-v0.4.0/v0.4.0.mod) = 272 +SHA256 (go/security_pwdsafety/pwdsafety-v0.4.0/v0.4.0.zip) = 81ee80f0da8ed074ea82b4e468a901ce4858c4e1a9635428e5355114c9c43601 +SIZE (go/security_pwdsafety/pwdsafety-v0.4.0/v0.4.0.zip) = 41421 diff --git a/security/pwdsafety/pkg-descr b/security/pwdsafety/pkg-descr new file mode 100644 index 000000000000..2d88f6f3a928 --- /dev/null +++ b/security/pwdsafety/pkg-descr @@ -0,0 +1,11 @@ +pwdsafety is a command-line tool that checks how safe a password is by +calculating its entropy and providing a safety score. It helps users +understand password strength without storing any password information. + +Features: + +- Password strength analysis through entropy calculation +- Safety scoring system +- Generates strong random passwords for weak inputs +- Command-line interface for easy integration +- Zero storage of password data |