learn linux and unix commands - unix shell scripting

Enigma simulators

 
Thread Tools Search this Thread
# 1  
Old 07-19-2009
Enigma simulators

This site has an interesting collection of simulators of early twentieth century rotor cryptodevices, as well as papers on Enigma and related technologies.

Image
Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

3 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Help with cygwin and cache simulators

I've just installed cygwin to run some well known Cache Simulators in a UNIX enviroment. I have installed cygwin according to the install instructions. Every time i try to run a make file from any of these simulators, I get the same exact error: And the makefiles do not work. Is there any... (3 Replies)
Discussion started by: sparklezilla3
3 Replies

2. Shell Programming and Scripting

csh quoting enigma

(no, i can't switch shells, although i'd love to. yes, i have read http://www.grymoire.com/Unix/CshTop10.txt.) i finally managed to get an alias working the way i want it to, but i don't understand how one part of it works (highlighted in red): alias log ' \\ set x=`echo \!:1 | /bin/sed... (1 Reply)
Discussion started by: acheong87
1 Replies

3. UNIX for Dummies Questions & Answers

UNIX simulators????

I am wanting to find a UNIX simulator, pref a shareware or freeware I can download. If anyone can help it would be greatly appreciated. (3 Replies)
Discussion started by: Kat_ComputerGeek
3 Replies
Login or Register to Ask a Question
crypt(1)                                                                                                                                  crypt(1)

NAME
crypt - encode or decode a file SYNOPSIS
crypt [password] The crypt utility encrypts and decrypts the contents of a file. crypt reads from the standard input and writes on the standard output. The password is a key that selects a particular transformation. If no password is given, crypt demands a key from the terminal and turns off printing while the key is being typed in. crypt encrypts and decrypts with the same key: example% crypt key < clear.file > encrypted.file example% crypt key < encrypted.file | pr prints the contents of clear.file. Files encrypted by crypt are compatible with those treated by the editors ed(1), ex(1), and vi(1) in encryption mode. The security of encrypted files depends on three factors: the fundamental method must be hard to solve; direct search of the key space must be infeasible; "sneak paths" by which keys or cleartext can become visible must be minimized. crypt implements a one-rotor machine designed along the lines of the German Enigma, but with a 256-element rotor. Methods of attack on such machines are widely known, thus crypt provides minimal security. The transformation of a key into the internal settings of the machine is deliberately designed to be expensive, that is, to take a substan- tial fraction of a second to compute. However, if keys are restricted to (say) three lower-case letters, then encrypted files can be read by expending only a substantial fraction of five minutes of machine time. Since the key is an argument to the crypt command, it is potentially visible to users executing ps(1) or a derivative command. To minimize this possibility, crypt takes care to destroy any record of the key immediately upon entry. No doubt the choice of keys and key security are the most vulnerable aspect of crypt. /dev/tty for typed key See attributes(5) for descriptions of the following attributes: +-----------------------------+-----------------------------+ | ATTRIBUTE TYPE | ATTRIBUTE VALUE | +-----------------------------+-----------------------------+ |Availability |SUNWcsu | +-----------------------------+-----------------------------+ des(1), ed(1), ex(1), ps(1), vi(1), attributes (5) 8 Mar 2005 crypt(1)