aboutsummaryrefslogtreecommitdiffstats
path: root/fripost-mkpass
diff options
context:
space:
mode:
authorGuilhem Moulin <guilhem.moulin@fripost.org>2012-04-15 16:32:19 +0200
committerGuilhem Moulin <guilhem.moulin@fripost.org>2012-04-15 16:32:19 +0200
commitb1fe11c6c9ae79bd8714ba7e627cff1665198fd4 (patch)
treebc9582837922b4a84f03b10118fbb1647964f70d /fripost-mkpass
parent82f9c2a71b02c8b5580ae80e2e46e97b348b5b28 (diff)
Use S-SHA1 by default.
Diffstat (limited to 'fripost-mkpass')
-rwxr-xr-xfripost-mkpass36
1 files changed, 26 insertions, 10 deletions
diff --git a/fripost-mkpass b/fripost-mkpass
index c6a261b..c30bd37 100755
--- a/fripost-mkpass
+++ b/fripost-mkpass
@@ -6,7 +6,16 @@ use strict;
=head1 NAME
-fripost-mkpass - Create a random new password
+fripost-mkpass - Create a random new password, and returns its hash
+
+=head1 SYNOPSIS
+
+B<fripost-mkpass> [I<password>]
+
+=head1 DESCRIPTION
+
+Use I<password> if given, otherwise generate a random new password, and
+print both the clear copy and a salted SHA-1 hash.
=cut
@@ -15,30 +24,37 @@ use lib "$Bin/lib";
our $VERSION = '0.01';
+use Getopt::Long qw /:config noauto_abbrev no_ignore_case
+ gnu_compat bundling permute nogetopt_compat
+ auto_version auto_help/;
+use Pod::Usage;
use Fripost::Password;
-use String::MkPasswd qw/mkpasswd/;
+
+GetOptions( "man" => sub { pod2usage(-exitstatus => 0,
+ -verbose => 2) }
+ ) or pod2usage(2);
# Generate password
my $password = $ARGV[0];
+$password //= mkpasswd();
-$password //= mkpasswd(
- -length => 20,
- -minnum => 5,
- -minspecial => 3
-);
# Show the information that will be inserted
-say "Password: $password";
-say "Salted MD5: " . smd5($password);
+say "Password: " . $password;
+say "Salted SHA-1: " . hash(SHA1, undef, $password);
-=head1 AUTHOR
+=head1 AUTHORS
Stefan Kangas C<< <skangas at skangas.se> >>
+Guilhem Moulin C<< <guilhem at fripost.org> >>
+
=head1 COPYRIGHT
Copyright 2010,2011 Stefan Kangas.
+Copyright 2012 Guilhem Moulin.
+
=head1 LICENSE
This program is free software; you can redistribute it and/or modify it