X-Git-Url: https://git.dogcows.com/gitweb?p=chaz%2Fp5-File-KDBX;a=blobdiff_plain;f=lib%2FFile%2FKDBX%2FLoader.pm;h=628fe98814e8aad3d03c9e59fce792835c09e2c7;hp=6d289be0f091e94973de72a0bfedb9d3e9cbbbe4;hb=63d73bf382edfb0089b36a45193fc2835cb58b6d;hpb=de4c4c788a24dd5af457ee5ad2006e8f60415ce9 diff --git a/lib/File/KDBX/Loader.pm b/lib/File/KDBX/Loader.pm index 6d289be..628fe98 100644 --- a/lib/File/KDBX/Loader.pm +++ b/lib/File/KDBX/Loader.pm @@ -105,7 +105,7 @@ sub reset { Load a KDBX file. -The C<$key> is either a L or a primitive that can be converted to a Key object. +The C<$key> is either a L or a primitive that can be cast to a Key object. =cut @@ -230,26 +230,13 @@ formats: =for :list * C - Read the database groups and entries as XML (default) -* C - Read parsing and store the result in L +* C - Read and store the result in L without parsing =cut has format => undef, is => 'ro'; has inner_format => 'XML', is => 'ro'; -=method min_version - - $min_version = File::KDBX::Loader->min_version; - -Get the minimum KDBX file version supported, which is 3.0 or C<0x00030000> as -it is encoded. - -To read older KDBX files unsupported by this module, try L. - -=cut - -sub min_version { KDBX_VERSION_OLDEST } - =method read_magic_numbers $magic = File::KDBX::Loader->read_magic_numbers($fh);