aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/des/DES.pm
diff options
context:
space:
mode:
authorRich Salz <rsalz@openssl.org>2015-02-02 18:46:01 -0500
committerRich Salz <rsalz@openssl.org>2015-02-02 18:46:01 -0500
commit24956ca00f014a917fb181a8abc39b349f3f316f (patch)
tree44934190dce2001972a2c271cf6cc3a17283c394 /crypto/des/DES.pm
parentfd22ab9edf497ad7d98897377ee798953845d022 (diff)
downloadopenssl-24956ca00f014a917fb181a8abc39b349f3f316f.tar.gz
Remove old DES API
Includes VMS fixes from Richard. Includes Kurt's destest fixes (RT 1290). Closes tickets 1290 and 1291 Reviewed-by: Kurt Roeckx <kurt@openssl.org> Reviewed-by: Richard Levitte <levitte@openssl.org>
Diffstat (limited to 'crypto/des/DES.pm')
-rw-r--r--crypto/des/DES.pm19
1 files changed, 0 insertions, 19 deletions
diff --git a/crypto/des/DES.pm b/crypto/des/DES.pm
deleted file mode 100644
index 6a175b6ca4..0000000000
--- a/crypto/des/DES.pm
+++ /dev/null
@@ -1,19 +0,0 @@
-package DES;
-
-require Exporter;
-require DynaLoader;
-@ISA = qw(Exporter DynaLoader);
-# Items to export into callers namespace by default
-# (move infrequently used names to @EXPORT_OK below)
-@EXPORT = qw(
-);
-# Other items we are prepared to export if requested
-@EXPORT_OK = qw(
-crypt
-);
-
-# Preloaded methods go here. Autoload methods go after __END__, and are
-# processed by the autosplit program.
-bootstrap DES;
-1;
-__END__