C/C++
stevens.asc
Associated article: C Programming
Tags: C/C++
_C PROGRAMMING COLUMN_ by Al Stevens [LISTING ONE] /* -------------- des.h ---------------- */ /* Header file for Data Encryption Standard algorithms */ /* -------------- prototypes ------------------- */ void initkey(char *key); void encrypt(char *blk); void decrypt(char *blk); /* ----------- tables ------------ */ extern unsigned char ...


