Re: Problems with AES-CFB1

2011-10-30 Thread Michael S. Zick
On Sun October 30 2011, Ananthasayanan Kandiah wrote: > #include > #include > #include > #include > > #define  KEY_SIZE 16 > > int main(void) > { >     int            i; >     AES_KEY        key; >     BIO*        bio_out; > >     unsigned char key_data[KEY_SIZE] = { >         0xfe, 0xec, 0x

Problems with AES-CFB1

2011-10-30 Thread Ananthasayanan Kandiah
Hi, I'm trying to use AES-CFB1 through the "low-level" calls. Here's the example program I have come up with: #include #include #include #include #define KEY_SIZE 16 int main(void) { inti; AES_KEYkey; BIO*bio_out; unsigned char key_data[KEY_SIZE