1*0Sstevel@tonic-gatepackage DES; 2*0Sstevel@tonic-gate 3*0Sstevel@tonic-gaterequire Exporter; 4*0Sstevel@tonic-gaterequire DynaLoader; 5*0Sstevel@tonic-gate@ISA = qw(Exporter DynaLoader); 6*0Sstevel@tonic-gate# Items to export into callers namespace by default 7*0Sstevel@tonic-gate# (move infrequently used names to @EXPORT_OK below) 8*0Sstevel@tonic-gate@EXPORT = qw( 9*0Sstevel@tonic-gate); 10*0Sstevel@tonic-gate# Other items we are prepared to export if requested 11*0Sstevel@tonic-gate@EXPORT_OK = qw( 12*0Sstevel@tonic-gatecrypt 13*0Sstevel@tonic-gate); 14*0Sstevel@tonic-gate 15*0Sstevel@tonic-gate# Preloaded methods go here. Autoload methods go after __END__, and are 16*0Sstevel@tonic-gate# processed by the autosplit program. 17*0Sstevel@tonic-gatebootstrap DES; 18*0Sstevel@tonic-gate1; 19*0Sstevel@tonic-gate__END__ 20