1File::KDBX::Loader::RawU(s3e)r Contributed Perl DocumentaFtiiloen::KDBX::Loader::Raw(3)
2
3
4
6 File::KDBX::Loader::Raw - A no-op loader that doesn't do any parsing
7
9 version 0.906
10
12 use File::KDBX::Loader;
13
14 my $kdbx = File::KDBX::Loader->load_file('file.kdbx', $key, inner_format => 'Raw');
15 print $kdbx->raw;
16
18 A typical KDBX file is made up of an outer section (with headers) and
19 an inner section (with the body). The inner section is usually loaded
20 using File::KDBX::Loader::XML, but you can use the
21 File::KDBX::Loader::Raw loader to not parse the body at all and just
22 get the raw body content. This can be useful for debugging or creating
23 KDBX files with arbitrary content (see File::KDBX::Dumper::Raw).
24
26 Please report any bugs or feature requests on the bugtracker website
27 <https://github.com/chazmcgarvey/File-KDBX/issues>
28
29 When submitting a bug or request, please include a test-file or a patch
30 to an existing test-file that illustrates the bug or desired feature.
31
33 Charles McGarvey <ccm@cpan.org>
34
36 This software is copyright (c) 2022 by Charles McGarvey.
37
38 This is free software; you can redistribute it and/or modify it under
39 the same terms as the Perl 5 programming language system itself.
40
41
42
43perl v5.36.1 2023-09-27 File::KDBX::Loader::Raw(3)