File: Elf.pm

package info (click to toggle)
libdigest-elf-perl 1.42-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 80 kB
  • sloc: perl: 22; makefile: 2
file content (75 lines) | stat: -rw-r--r-- 1,255 bytes parent folder | download | duplicates (2)
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
package Digest::Elf;

use 5.006;
use strict;
use warnings;
use vars qw( $VERSION );

require Exporter;
require DynaLoader;

our @ISA = qw(Exporter DynaLoader);

# Items to export into callers namespace by default. Note: do not export
# names by default without a very good reason. Use EXPORT_OK instead.
# Do not simply export all your public functions/methods/constants.

# This allows declaration	use Digest::Elf ':all';
# If you do not need this, moving things directly into @EXPORT or @EXPORT_OK
# will save memory.
our %EXPORT_TAGS = ( 'all' => [ qw(
	elf
) ] );

our @EXPORT_OK = ( @{ $EXPORT_TAGS{'all'} } );

our @EXPORT = qw(
	
);

$VERSION = sprintf( "%s", q{$Id: Elf.pm,v 1.42 2016/03/05 04:18:47 steve Exp $} =~ /(\d+\.\d+)/ );

bootstrap Digest::Elf $VERSION;

# Preloaded methods go here.

1;
__END__

=head1 NAME

Digest::Elf - Perl extension for generating ElfHash values.

=head1 SYNOPSIS

  use Digest::Elf;
  print Digest::Elf::elf( "foo" );

=head1 DESCRIPTION

Digest::Elf is an implementation of the ElfHash algorithm.

=head1 FUNCTIONS

=over

=item elf( VALUE )

Create a hash value based on the input value.

=back

=head1 AUTHOR

Steve McKay, E<lt>steve@colgreen.comE<gt>

=head1 SEE ALSO

=over

=item Digest::MD5

=back

=cut