Database
schneier.lst
Associated article: The IDEA Encryption Algorithm
Tags: Database Security
_The IDEA Encryption Algorithm_ by Bruce Schneier [LISTING ONE] /* idea.h - header file for idea.c */ #include "usuals.h" /* typedefs for byte, word16, boolean, etc. */ #define IDEAKEYSIZE 16 #define IDEABLOCKSIZE 8 void initcfb_idea(word16 iv0[4], byte key[16], boolean ...


