1Nilsimsa(3) User Contributed Perl Documentation Nilsimsa(3)
2
3
4
6 Digest::Nilsimsa - Perl version of Nilsimsa code
7
9 use Digest::Nilsimsa;
10
11 my $nilsimsa = Digest::Nilsimsa;
12
13 my $digest = $nilsimsa->text2digest($text);
14
16 A nilsimsa signature is a statistic of n-gram occurance in a piece of
17 text. It is a 256 bit value usually represented in hex. This module is
18 a wrapper around nilsimsa implementation in C by cmeclax.
19
21 $nilsimsa->text2digest($text);
22 Pass in any text, any size, and get back a digest string composed
23 64 hex chars.
24
26 http://ixazon.dynip.com/~cmeclax/nilsimsa.html
27
29 Chad Norwood <chad@455scott.com>, cmeclax
30
31
32
33perl v5.32.1 2021-01-27 Nilsimsa(3)