~ubuntu-branches/ubuntu/precise/openssl098/precise

« back to all changes in this revision

Viewing changes to crypto/des/DES.pm

  • Committer: Bazaar Package Importer
  • Author(s): Kurt Roeckx
  • Date: 2011-03-23 19:50:31 UTC
  • Revision ID: james.westby@ubuntu.com-20110323195031-6h9crj4bymhhr8b8
Tags: upstream-0.9.8o
ImportĀ upstreamĀ versionĀ 0.9.8o

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
package DES;
 
2
 
 
3
require Exporter;
 
4
require DynaLoader;
 
5
@ISA = qw(Exporter DynaLoader);
 
6
# Items to export into callers namespace by default
 
7
# (move infrequently used names to @EXPORT_OK below)
 
8
@EXPORT = qw(
 
9
);
 
10
# Other items we are prepared to export if requested
 
11
@EXPORT_OK = qw(
 
12
crypt
 
13
);
 
14
 
 
15
# Preloaded methods go here.  Autoload methods go after __END__, and are
 
16
# processed by the autosplit program.
 
17
bootstrap DES;
 
18
1;
 
19
__END__