Re: [cryptography] AES Implementation

2015-05-12 Thread Ilya Levin
If you need C and only AES then http://literatecode.com/aes256 https://github.com/ilvn/aes256ctr Ilya On Tue, May 12, 2015 at 5:47 PM, Givon Zirkind givo...@gmx.com wrote: Hi, Can anyone recommend an open source AES library in some flavor of C? Thanks. G.

Re: [cryptography] AES Implementation

2015-05-12 Thread Jeffrey Walton
On Tue, May 12, 2015 at 5:47 AM, Givon Zirkind givo...@gmx.com wrote: Hi, Can anyone recommend an open source AES library in some flavor of C? It depends on your goals and threat models. If any old library will do, then check out https://wiki.openssl.org/index.php/Related_Links and

Re: [cryptography] AES Implementation

2015-05-12 Thread Steve Weis
OpenSSL's AES implementation is in C and can be built standalone: https://github.com/openssl/openssl/tree/master/crypto/aes Once catch is the /asm directory uses Perl templates to generate assembly files. If you are on an x86 platform, those aesni assembly implementations, mostly by Andy Polyakov