]> Dogcows Code - chaz/p5-File-KDBX-XS/blob - lib/File/KDBX/XS.pm
initial commit
[chaz/p5-File-KDBX-XS] / lib / File / KDBX / XS.pm
1 package File::KDBX::XS;
2 # ABSTRACT: Speed up File::KDBX
3
4 use warnings;
5 use strict;
6
7 use XSLoader;
8
9 our $VERSION = '999.999'; # VERSION
10
11 XSLoader::load(__PACKAGE__, $VERSION);
12
13 1;
14 __END__
15
16 =head1 DESCRIPTION
17
18 This module provides some speed improvement for L<File::KDBX>.
19
20 There is no public interface.
21
22 This distribution contains code from L<CryptX> and L<LibTomCrypt|https://www.libtom.net/LibTomCrypt/>,
23 bundled according to their own licensing terms (which are also permissive).
24
25 =cut
This page took 0.035132 seconds and 4 git commands to generate.