1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-22 04:17:44 +00:00

ranpwd uses /dev/random or /dev/urandom to generate cryptographically secure

passwords.

Generated passwords may consist of any specified length and any combination of
upper- or lower-case alphanumeric characters or punctuation.  ranpwd can also
generate passwords consisting of hexadecimal, decimal, octal or binary numbers,
and format these as valid C constants for inclusion in source code.

WWW: http://freshmeat.net/projects/ranpwd

PR:		ports/135540
Submitted by:	corky1951 at comcast.net
This commit is contained in:
Martin Wilke 2009-06-19 05:28:46 +00:00
parent fcd6c8e8ef
commit 70c4785ca0
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=236269
4 changed files with 38 additions and 0 deletions

View File

@ -690,6 +690,7 @@
SUBDIR += radiusniff
SUBDIR += rain
SUBDIR += rainbowcrack
SUBDIR += ranpwd
SUBDIR += rarcrack
SUBDIR += ratproxy
SUBDIR += rats

25
security/ranpwd/Makefile Normal file
View File

@ -0,0 +1,25 @@
# ex:ts=8
# Ports collection makefile for: ranpwd
# Date created: Jun 11, 2009
# Whom: corky1951@comcast.net
#
# $FreeBSD$
#
PORTNAME= ranpwd
PORTVERSION= 1.2
CATEGORIES= security
MASTER_SITES= ${MASTER_SITE_KERNEL_ORG}
MASTER_SITE_SUBDIR= software/utils/admin/ranpwd
MAINTAINER= corky1951@comcast.net
COMMENT= A tool to generate random passwords
GNU_CONFIGURE= yes
USE_GMAKE= yes
PLIST_FILES= bin/ranpwd
MAN1= ranpwd.1
.include <bsd.port.mk>

3
security/ranpwd/distinfo Normal file
View File

@ -0,0 +1,3 @@
MD5 (ranpwd-1.2.tar.gz) = 7f69760a48e9b2e36dd52c4769c470b5
SHA256 (ranpwd-1.2.tar.gz) = b63cc1a621966a3bfabc83803c32617ef8caf5b7687042ac1b0eee04b8b79507
SIZE (ranpwd-1.2.tar.gz) = 41018

View File

@ -0,0 +1,9 @@
ranpwd uses /dev/random or /dev/urandom to generate cryptographically secure
passwords.
Generated passwords may consist of any specified length and any combination of
upper- or lower-case alphanumeric characters or punctuation. ranpwd can also
generate passwords consisting of hexadecimal, decimal, octal or binary numbers,
and format these as valid C constants for inclusion in source code.
WWW: http://freshmeat.net/projects/ranpwd