1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266
|
package File::KDBX::KDF;
# ABSTRACT: A key derivation function
use warnings;
use strict;
use Crypt::PRNG qw(random_bytes);
use File::KDBX::Constants qw(:version :kdf);
use File::KDBX::Error;
use File::KDBX::Util qw(format_uuid);
use Module::Load;
use Scalar::Util qw(blessed);
use namespace::clean;
our $VERSION = '0.906'; # VERSION
my %KDFS;
our %ROUNDS_INFO = (
KDF_UUID_ARGON2D() => {p => KDF_PARAM_ARGON2_ITERATIONS, d => KDF_DEFAULT_ARGON2_ITERATIONS},
KDF_UUID_ARGON2ID() => {p => KDF_PARAM_ARGON2_ITERATIONS, d => KDF_DEFAULT_ARGON2_ITERATIONS},
);
our $DEFAULT_ROUNDS_INFO = {
p => KDF_PARAM_AES_ROUNDS,
d => KDF_DEFAULT_AES_ROUNDS,
};
sub new {
my $class = shift;
my %args = @_;
my $uuid = $args{+KDF_PARAM_UUID} //= delete $args{uuid} or throw 'Missing KDF UUID', args => \%args;
my $formatted_uuid = format_uuid($uuid);
my $kdf = $KDFS{$uuid} or throw "Unsupported KDF ($formatted_uuid)", uuid => $uuid;
($class, my %registration_args) = @$kdf;
load $class;
my $self = bless {KDF_PARAM_UUID() => $uuid}, $class;
return $self->init(%args, %registration_args);
}
sub init {
my $self = shift;
my %args = @_;
@$self{keys %args} = values %args;
return $self;
}
sub uuid { $_[0]->{+KDF_PARAM_UUID} }
sub seed { die 'Not implemented' }
sub transform {
my $self = shift;
my $key = shift;
if (blessed $key && $key->can('raw_key')) {
return $self->_transform($key->raw_key) if $self->uuid eq KDF_UUID_AES;
return $self->_transform($key->raw_key($self->seed, @_));
}
return $self->_transform($key);
}
sub _transform { die 'Not implemented' }
sub randomize_seed {
my $self = shift;
$self->{+KDF_PARAM_AES_SEED} = random_bytes(length($self->seed));
}
sub register {
my $class = shift;
my $id = shift;
my $package = shift;
my @args = @_;
my $formatted_id = format_uuid($id);
$package = "${class}::${package}" if $package !~ s/^\+// && $package !~ /^\Q${class}::\E/;
my %blacklist = map { File::KDBX::Util::uuid($_) => 1 } split(/,/, $ENV{FILE_KDBX_KDF_BLACKLIST} // '');
if ($blacklist{$id} || $blacklist{$package}) {
alert "Ignoring blacklisted KDF ($formatted_id)", id => $id, package => $package;
return;
}
if (defined $KDFS{$id}) {
alert "Overriding already-registered KDF ($formatted_id) with package $package",
id => $id,
package => $package;
}
$KDFS{$id} = [$package, @args];
}
sub unregister {
delete $KDFS{$_} for @_;
}
BEGIN {
__PACKAGE__->register(KDF_UUID_AES, 'AES');
__PACKAGE__->register(KDF_UUID_AES_CHALLENGE_RESPONSE, 'AES');
__PACKAGE__->register(KDF_UUID_ARGON2D, 'Argon2');
__PACKAGE__->register(KDF_UUID_ARGON2ID, 'Argon2');
}
1;
__END__
=pod
=encoding UTF-8
=head1 NAME
File::KDBX::KDF - A key derivation function
=head1 VERSION
version 0.906
=head1 DESCRIPTION
A KDF (key derivation function) is used in the transformation of a master key (i.e. one or more component
keys) to produce the final encryption key protecting a KDBX database. The L<File::KDBX> distribution comes
with several pre-registered KDFs ready to go:
=over 4
=item *
C<C9D9F39A-628A-4460-BF74-0D08C18A4FEA> - AES
=item *
C<7C02BB82-79A7-4AC0-927D-114A00648238> - AES (challenge-response variant)
=item *
C<EF636DDF-8C29-444B-91F7-A9A403E30A0C> - Argon2d
=item *
C<9E298B19-56DB-4773-B23D-FC3EC6F0A1E6> - Argon2id
=back
B<NOTE:> If you want your KDBX file to be readable by other KeePass implementations, you must use a UUID and
algorithm that they support. From the list above, all are well-supported except the AES challenge-response
variant which is kind of a pseudo KDF and isn't usually written into files. All of these are good. AES has
a longer track record, but Argon2 has better ASIC resistance.
You can also L</register> your own KDF. Here is a skeleton:
package File::KDBX::KDF::MyKDF;
use parent 'File::KDBX::KDF';
File::KDBX::KDF->register(
# $uuid, $package, %args
"\x12\x34\x56\x78\x9a\xbc\xde\xfg\x12\x34\x56\x78\x9a\xbc\xde\xfg" => __PACKAGE__,
);
sub init { ... } # optional
sub _transform { my ($key) = @_; ... }
=head1 ATTRIBUTES
=head2 uuid
$uuid => $kdf->uuid;
Get the UUID used to determine which function to use.
=head2 seed
$seed = $kdf->seed;
Get the seed (or salt, depending on the function).
=head1 METHODS
=head2 new
$kdf = File::KDBX::KDF->new(parameters => \%params);
Construct a new KDF.
=head2 init
$kdf = $kdf->init(%attributes);
Called by L</new> to set attributes. You normally shouldn't call this. Returns itself to allow method
chaining.
=head2 transform
$transformed_key = $kdf->transform($key);
$transformed_key = $kdf->transform($key, $challenge);
Transform a key. The input key can be either a L<File::KDBX::Key> or a raw binary key, and the
transformed key will be a raw key.
This can take awhile, depending on the KDF parameters.
If a challenge is provided (and the KDF is AES except for the KeePassXC variant), it will be passed to the key
so challenge-response keys can produce raw keys. See L<File::KDBX::Key/raw_key>.
=head2 randomize_seed
$kdf->randomize_seed;
Generate and set a new random seed/salt.
=head2 register
File::KDBX::KDF->register($uuid => $package, %args);
Register a KDF. Registered KDFs can be used to encrypt and decrypt KDBX databases. A KDF's UUID B<must> be
unique and B<musn't change>. A KDF UUID is written into each KDBX file and the associated KDF must be
registered with the same UUID in order to decrypt the KDBX file.
C<$package> should be a Perl package relative to C<File::KDBX::KDF::> or prefixed with a C<+> if it is
a fully-qualified package. C<%args> are passed as-is to the KDF's L</init> method.
=head2 unregister
File::KDBX::KDF->unregister($uuid);
Unregister a KDF. Unregistered KDFs can no longer be used to encrypt and decrypt KDBX databases, until
reregistered (see L</register>).
=head1 BUGS
Please report any bugs or feature requests on the bugtracker website
L<https://github.com/chazmcgarvey/File-KDBX/issues>
When submitting a bug or request, please include a test-file or a
patch to an existing test-file that illustrates the bug or desired
feature.
=head1 AUTHOR
Charles McGarvey <ccm@cpan.org>
=head1 COPYRIGHT AND LICENSE
This software is copyright (c) 2022 by Charles McGarvey.
This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.
=cut
|