Last active
October 17, 2016 14:27
-
-
Save BramEsposito/6448f96e6ee7490f2df51137c3874d35 to your computer and use it in GitHub Desktop.
Generate a Dutch password following the XKCD philosophy
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# /usr/bin/perl | |
# documentation: http://bbusschots.github.io/hsxkpasswd/Crypt-HSXKPasswd/pod.html | |
# install: sudo cpan Crypt::HSXKPasswd | |
use Crypt::HSXKPasswd; | |
use Crypt::HSXKPasswd::Dictionary::NL; | |
my $hsxkpasswd_instance = Crypt::HSXKPasswd->new( | |
dictionary => Crypt::HSXKPasswd::Dictionary::NL->new(), | |
preset => 'APPLEID', | |
); | |
print $hsxkpasswd_instance->password(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment