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 stdio.h #include string.h #include openssl/aes.h #include openssl/bio.h #define KEY_SIZE 16 int main(void) { inti; AES_KEYkey; BIO*

Re: Problems with AES-CFB1

2011-10-30 Thread Michael S. Zick
On Sun October 30 2011, Ananthasayanan Kandiah wrote: #include stdio.h #include string.h #include openssl/aes.h #include openssl/bio.h #define  KEY_SIZE 16 int main(void) {     int            i;     AES_KEY        key;     BIO*        bio_out;     unsigned char key_data[KEY_SIZE]