]> Dogcows Code - chaz/p5-File-KDBX-XS/blob - lib/File/KDBX/XS.pm
set a version in repo Makefile.PL
[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 =func CowREFCNT
42
43 Get the copy-on-write (COW) reference count of a scalar, or C<undef> if the perl does not support scalar COW
44 or if the scalar is not COW.
45
46 See also L<B::COW/"cowrefcnt( PV )">.
47
48 =for Pod::Coverage kdf_aes_transform_half
49
50 =cut
This page took 0.035544 seconds and 4 git commands to generate.