Skip Menu |

This queue is for tickets about the Authen-Passphrase CPAN distribution.

Report information
The Basics
Id: 133259
Status: new
Priority: 0/
Queue: Authen-Passphrase

People
Owner: Nobody in particular
Requestors: RENTOCRON [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: (no value)
Fixed in: (no value)



Subject: Add support for crypt scheme $2y$ (BlowfishCrypt)
Hello, It's possible to add $2y$ to BlowfishCrypt with minor changes to %crypt_scheme_handler and the regexp at Authen::Passphrase::BlowfishCrypt from_crypt Are you accepting PR?
If anyone is using DBIx::Class::PassphraseColumn and want a hack, you can add this to your Result: sub get_column { my ($self, $col, @other) = @_; return $self->SUPER::get_column($col, @other) if $col ne 'password'; my $text = $self->SUPER::get_column($col, @other); $text =~ s{\$2y\$}{\$2a\$}; return $text; }