package Hash::PassPhrase;
use Moose;
use MooseX::Invertible_Build;
has passPhrase => ( isa => Str );
has salt => ( isa => Str );
has hash => (
isa => Str,
invertible_build => {
A => 'salt',
B => 'passPhrase',
via => 'crypt( A, B )',
},
);
With the rise and rise of 'Social' network sites: 'Computers are making people easier to use everyday'
Examine what is said, not who speaks -- Silence betokens consent -- Love the truth but pardon error.
"Science is about questioning the status quo. Questioning authority".
|