Provided by: libfile-kdbx-perl_0.906-2_all bug

NAME

       File::KDBX::Loader::Raw - A no-op loader that doesn't do any parsing

VERSION

       version 0.906

SYNOPSIS

           use File::KDBX::Loader;

           my $kdbx = File::KDBX::Loader->load_file('file.kdbx', $key, inner_format => 'Raw');
           print $kdbx->raw;

DESCRIPTION

       A typical KDBX file is made up of an outer section (with headers) and an inner section
       (with the body). The inner section is usually loaded using File::KDBX::Loader::XML, but
       you can use the File::KDBX::Loader::Raw loader to not parse the body at all and just get
       the raw body content. This can be useful for debugging or creating KDBX files with
       arbitrary content (see File::KDBX::Dumper::Raw).

BUGS

       Please report any bugs or feature requests on the bugtracker website
       <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.

AUTHOR

       Charles McGarvey <ccm@cpan.org>

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.