]> Dogcows Code - chaz/p5-File-KDBX-XS/blob - lib/File/KDBX/XS.pm
57facc917c127cac5ce3d3586e67c6c8b5ab2314
[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 =begin markdown
26
27 [![Linux](https://github.com/chazmcgarvey/File-KDBX-XS/actions/workflows/linux.yml/badge.svg)](https://github.com/chazmcgarvey/File-KDBX-XS/actions/workflows/linux.yml)
28 [![macOS](https://github.com/chazmcgarvey/File-KDBX-XS/actions/workflows/macos.yml/badge.svg)](https://github.com/chazmcgarvey/File-KDBX-XS/actions/workflows/macos.yml)
29 [![Windows](https://github.com/chazmcgarvey/File-KDBX-XS/actions/workflows/windows.yml/badge.svg)](https://github.com/chazmcgarvey/File-KDBX-XS/actions/workflows/windows.yml)
30
31 =end markdown
32
33 =begin HTML
34
35 <a title="Linux" href="https://github.com/chazmcgarvey/File-KDBX-XS/actions/workflows/linux.yml"><img src="https://github.com/chazmcgarvey/File-KDBX-XS/actions/workflows/linux.yml/badge.svg"></a>
36 <a title="macOS" href="https://github.com/chazmcgarvey/File-KDBX-XS/actions/workflows/macos.yml"><img src="https://github.com/chazmcgarvey/File-KDBX-XS/actions/workflows/macos.yml/badge.svg"></a>
37 <a title="Windows" href="https://github.com/chazmcgarvey/File-KDBX-XS/actions/workflows/windows.yml"><img src="https://github.com/chazmcgarvey/File-KDBX-XS/actions/workflows/windows.yml/badge.svg"></a>
38
39 =end HTML
40
41 =cut
This page took 0.03347 seconds and 3 git commands to generate.