Revision history for Perl extension Authen::Passphrase::Scrypt.
 
+0.002 2018-04-14T22:23+03:00
+ - Make API compatible with Authen::Passphrase (RT #125063)
+ - Replace Class::Accessor::Fast with Object::Tiny
+ - Improve test coverage
+
 0.001001 2017-07-08T11:45+01:00
  - Fix compilation error on glibc < 2.17.
    clock_gettime requires -lrt on glibc < 2.17. It is used in
 
-Authen-Passphrase-Scrypt version 0.001001
-=========================================
+Authen-Passphrase-Scrypt version 0.002
+======================================
 
 This is experimental code, DO NOT USE in security-critical software.
 
 
 * OpenSSL (-lcrypto)
 * Authen::Passphrase
-* Class::Accessor::Fast
 * Data::Entropy::Algorithms
+* Object::Tiny
+* Test::Exception
 
 COPYRIGHT AND LICENCE
 
-Copyright (C) 2017 by Marius Gavrilescu
+Copyright (C) 2017-2018 by Marius Gavrilescu
 
 This library is free software; you can redistribute it and/or modify
 it under the same terms as Perl itself, either Perl version 5.24.1 or,
 
 
 our @EXPORT = qw/crypto_scrypt/;
 our @EXPORT_OK = @EXPORT;
-our $VERSION = '0.001001';
+our $VERSION = '0.002';
 
 use Data::Entropy::Algorithms qw/rand_bits/;
 use Digest::SHA qw/sha256 hmac_sha256/;
 
 =head1 COPYRIGHT AND LICENSE
 
-Copyright (C) 2017 by Marius Gavrilescu
+Copyright (C) 2017-2018 by Marius Gavrilescu
 
 This library is free software; you can redistribute it and/or modify
 it under the same terms as Perl itself, either Perl version 5.24.1 or,