Give this a shot. The algorithm version is faked/copied in the Perl to match the PHP… Don’t know how this is going to play with apache auth…
use strictures;
use feature "say";
use Crypt::Eksblowfish::Bcrypt "en_base64", "de_base64", "bcrypt_hash"
+;
my $pass = shift || "passw0rd";
my $php_pass = qx{php -r 'echo password_hash($pass, PASSWORD_BCRYPT);'
+};
my ( $algorithm, $cost, $salt_pass ) = grep length, split /\$/, $php_p
+ass;
my $salt = substr $salt_pass, 0, 22;
my $perl_hash = en_base64( bcrypt_hash({ cost => $cost,
key_nul => 1,
salt => de_base64($salt) },
$pass ) );
my $perl_pass = sprintf '$%s$%d$%s%s', $algorithm, $cost, $salt, $perl
+_hash;
say " PHP $pass -> ", $php_pass;
say "Perl $pass -> ", $perl_pass;
PHP passw0rd -> $2y$10$ThWGjh5Jly8qP6FMQApQ3OQElLLuwN03jlZMFdQngphJw7
+U5NCukG
Perl passw0rd -> $2y$10$ThWGjh5Jly8qP6FMQApQ3OQElLLuwN03jlZMFdQngphJw7
+U5NCukG
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
|
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.
|
|