The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
Revision history for Perl module App::bmkpasswd

2.004001 2013-10-16

  - Fix MD5 failures on machines without Crypt::Passwd::XS

2.004000 2013-10-15

  - Add mkpasswd_available function for checking avail hash methods

2.003001 2013-10-14

  - Fix failing t/04_hashopts.t on machines without SHA support

  - Use Pod::Usage to provide --help / --usage / --man

2.003000 2013-10-13

  - Support for passing in a salt generator coderef
  
  - mkpasswd() can accept parameters via a HASH

2.002000 2013-09-12

  - Use Exporter::Tiny

2.001003 2013-09-01

  - No code changes; drop prereq to perl-5.6

2.001002 2013-08-09

  - No code changes; fix 'Changes' to match CPAN::Changes::Spec

2.001001 2013-06-18

  - Kill Term::ReadKey dependency entirely; instead use POSIX::Termios to turn
    off terminal echo.  (haarg clued me in to this in a conversation he was
    having with tobyink on irc.perl.org #web-simple -- thanks!)

2.001000 2013-05-02

  - Output `bmkpasswd` prompts to STDERR for more sensible redirection

  - Make Term::ReadKey optional and warn if we don't have it

2.000003 2013-04-21

  - Cleaner --bench output

  - POD/test cleanups

2.000002 2013-04-19

  - Fix single-digit work-cost adjustment

  - Crypt::Bcrypt::Easy:
    Add ->cost() method
    Possible to pass a 'type =>' to ->crypt()
    (undocumented -- bcrypt is your friend, use it)

2.000001 2013-04-19

  - Add Crypt::Bcrypt::Easy

1.082005 2013-04-08

  - Better passwdcmp() argument-checking

  - Trap dying 'crypt()' calls in tests to avoid fuzzy fails like
    http://www.cpantesters.org/cpan/report/be021b42-9e64-11e2-8d62-e95aab8f1a3b

1.082004 2013-04-05

  - Use constant time comparison when comparing hashes.

  - POD enhancements.

1.082003 2013-04-01

  - POD tweaks

1.082002 2013-02-23

  - Lazy-build Bytes::Random::Secure instances

1.082001 2013-02-23

  - Use Bytes::Random::Secure-0.24

1.082000 2013-02-17

  - Use NonBlocking => 1 unless --strong is specified

1.081002 2013-02-17

  - Fix stray reference to deprecated HAVE_PASSWD_XS in bin/bmkpasswd

1.081001 2013-02-17
 
  - Use Crypt::Random::Seed in blocking mode to generate salts securely.

  - Switch to dzil & semantic versioning


1.07 2012-06-10

  - Slightly more sane Crypt::Passwd::XS checking.

  - Improved POD.

1.06 2012-06-09

  - Small t/ readability cleanup.

  - Missing changelog for 1.05.

1.05 2012-06-09

  - Skip MD5 tests on systems without Crypt::Passwd::XS or working MD5.

  - Fixes test failures on Windows builds without proper crypt(),
    MD5 is only included for compat with ancient hashes anyway.

1.04 2012-06-09

  - Fix a broken test on systems missing SHA support.

  - More consistent POD between bmkpasswd(1) and App::bmkpasswd

1.03 2012-06-08

  - croak() if specified work cost factor is not numeric.
  
  - croak() on unknown types.

  - Clean up an old check that is no longer relevant; have_sha() will now 
    do the Right Thing if Crypt::Passwd::XS is missing, so we don't need 
    to check if someone was stupidly futzing with package variables.

1.02 2012-06-08

  - Typo/style cleanups

1.01 2012-06-08

  - Try::Tiny rather than raw block eval, 'use strictures'

  - Improved tests

1.00 2012-05-23

  - Minor cleanups, 1.00

0.05 2012-04-07

  - t/04_sha: mention Crypt::Passwd::XS if SHA is missing

  - Include . / in standard salt possibles (MD5/SHA)

  - croak() rather than die() from bmkpasswd.pm

0.04 2012-04-02

  - Don't export mkpasswd/passwdcmp unless requested.

0.03 2012-03-29

  - First known-working CPAN-able dist; based on code pulled out of the
    Bot::Cobalt IRC bot, with POD updates, optional Crypt::Passwd::XS
    detection/use, better tests