File: enigma.h

package info (click to toggle)
libmcrypt 2.5.8-8
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 7,060 kB
  • sloc: ansic: 15,868; sh: 8,579; makefile: 196
file content (13 lines) | stat: -rw-r--r-- 216 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
#define E_ECHO 010
#define ROTORSZ 256
#define MASK 0377

typedef struct crypt_key {
	char t1[ROTORSZ];
	char t2[ROTORSZ];
	char t3[ROTORSZ];
	char deck[ROTORSZ];
	char cbuf[13];
	int n1, n2, nr1, nr2;
} CRYPT_KEY;