-
-
26 Nov 2001 20:08:16 UTC
- Distribution: Crypt-Enigma
- Module version: 1.1
- Source (raw)
- Browse (raw)
- Changes
- How to Contribute
- Issues
- Testers (376 / 0 / 2)
- Kwalitee
Bus factor: 0- 10.67% Coverage
- License: unknown
- Activity
24 month- Tools
- Download (5.65KB)
- MetaCPAN Explorer
- Permissions
- Subscribe to distribution
- Permalinks
- This version
- Latest version
- Dependencies
- unknown
- Reverse dependencies
- CPAN Testers List
- Dependency graph
NAME
Crypt::Enigma - Perl extension for emulating a World War II Enigma
SYNOPSIS
use Crypt::Enigma; my($enigma) = Crypt::Enigma->new(); # Set the enigma to the proper rotor, ring, and initial setting. $enigma->setup("312", "ABC", "ERZ"); # Plugboard a to b, and b to a. $enigma->stekker("a", "b"); # Input a single letter, and get the encrypted letter. my($output) = $enigma->input("A"); # Input another letter, and get the output. $output = $enigma->input("W");
DESCRIPTION
See the documentation that came with the Crypt::Enigma package for more information.
EXPORT
None by default.
AUTHOR
Jason Blakey, <lt>jblakey@frogboy.net<gt>
SEE ALSO
http://www.frogboy.net/Enigma
Module Install Instructions
To install Crypt::Enigma, copy and paste the appropriate command in to your terminal.
cpanm Crypt::Enigma
perl -MCPAN -e shell install Crypt::Enigma
For more information on module installation, please visit the detailed CPAN module installation guide.