logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

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

Author

       Charles McGarvey <ccm@cpan.org>

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.

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).

Name

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

Synopsis

           use File::KDBX::Loader;

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

Version

       version 0.906

See Also