/* Encrypt.h
L. Stewart August 17, 1982 1:19 PM
L. Stewart June 5, 1983 5:42 PM, added lenECB
*/
struct ECB {
struct ECB *next;
char *kp, *srcp, *dstp;
int count;
int encrypt; /* true for encrypt, false for decrypt */
int item, proc; /* call proc with item when done */
};
#define lenECB 8
/* procedures
InitEncrypt()
Encrypt(p) struct ECP *p;
*/
#define dirEncrypt 1
#define dirDecrypt 0