-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathREADME
More file actions
36 lines (23 loc) · 1.13 KB
/
README
File metadata and controls
36 lines (23 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
Crypt-Sodium version 0.12
=========================
Simple wrapper around NaCL functions provided by libsodium. crypto_box, crypto_stream, crypto_hash,
and crypto_sign are all present and accounted for. None of the specific implementations are exposed,
only the default implementations are, so please refer to your version of libsodium's release notes if
you need to know what implementation you are using.
A crude attempt to detect your version of libsodium using pkg-config and by inspecting canonical dirs
is made. Falls back to "minimum" level of support - 1.0.8. To troubleshoot feature detection run:
perl Makefile.PL verbose
INSTALLATION
To install this module type the following:
perl Makefile.PL
make
make test
make install
DEPENDENCIES
This module requires these other modules and libraries:
libsodium (download.libsodium.org/libsodium/releases/)
COPYRIGHT AND LICENCE
Copyright (C) 2018 by Michael Gregorowicz
This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself, either Perl version 5.8.0 or,
at your option, any later version of Perl 5 you may have available.