Files
interactive/application/sp-console(down)/Common/.svn/pristine/77/77adff2de0ddd6fd5ac904141b84224008a6dab9.svn-base
2026-08-07 17:38:18 +09:00

14 lines
229 B
Plaintext

#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;