Commit message (Expand) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Add "const" to AES function arguments where possible without generating | Reimar Döffinger | 2009-01-28 | 1 | -7/+7 |
* | Change semantic of CONFIG_*, HAVE_* and ARCH_*. | Aurelien Jacobs | 2009-01-13 | 1 | -3/+3 |
* | Fix test program compilation, random() needs to be undefined. | Diego Biurrun | 2008-01-08 | 1 | -0/+2 |
* | main() --> main(void) | Diego Biurrun | 2007-11-23 | 1 | -1/+1 |
* | Document aes init code writing on purpose beyond round_key array into state a... | Reimar Döffinger | 2007-07-18 | 1 | -0/+2 |
* | Move comment to a slightly better place. | Diego Biurrun | 2007-07-02 | 1 | -2/+2 |
* | correct last element inited check | Michael Niedermayer | 2007-05-13 | 1 | -1/+1 |
* | make key parameter const | Baptiste Coudurier | 2007-02-11 | 1 | -1/+1 |
* | 10l (aes_crypt -> av_aes_crypt) | Michael Niedermayer | 2007-01-17 | 1 | -4/+4 |
* | fix CONFIG_SMALL again | Michael Niedermayer | 2007-01-16 | 1 | -18/+8 |
* | 30byte smaller object file | Michael Niedermayer | 2007-01-16 | 1 | -3/+3 |
* | cbc support | Michael Niedermayer | 2007-01-16 | 1 | -12/+23 |
* | avoid memcpy() | Michael Niedermayer | 2007-01-16 | 1 | -4/+3 |
* | give crypt a src and dst | Michael Niedermayer | 2007-01-16 | 1 | -23/+21 |
* | change subshift a little, this reduces the object size a litlle | Michael Niedermayer | 2007-01-16 | 1 | -5/+7 |
* | use 2 state arrays so that fewer temporary variables are needed | Michael Niedermayer | 2007-01-16 | 1 | -33/+32 |
* | remove useless parameter | Michael Niedermayer | 2007-01-16 | 1 | -4/+4 |
* | unused variable | Michael Niedermayer | 2007-01-16 | 1 | -1/+1 |
* | merge shift into mix | Michael Niedermayer | 2007-01-15 | 1 | -20/+28 |
* | make aes_en/decrypt() static until we decided on the public API | Michael Niedermayer | 2007-01-15 | 1 | -5/+5 |
* | move #include log.h into the selftesting code where it belongs | Michael Niedermayer | 2007-01-15 | 1 | -1/+1 |
* | remove dependancy on *malloc() | Michael Niedermayer | 2007-01-15 | 1 | -19/+20 |
* | check the last? entry written for detecting already initalized tables | Michael Niedermayer | 2007-01-15 | 1 | -1/+1 |
* | replace / by >> this makes the .o ~150 bytes smaller | Michael Niedermayer | 2007-01-15 | 1 | -4/+4 |
* | cosmetic | Michael Niedermayer | 2007-01-15 | 1 | -2/+0 |
* | simplify | Michael Niedermayer | 2007-01-14 | 1 | -10/+4 |
* | simplify multiply table init | Michael Niedermayer | 2007-01-14 | 1 | -11/+11 |
* | simplify selftest | Michael Niedermayer | 2007-01-14 | 1 | -27/+17 |
* | revert simplification (broke 192 bit keys) | Michael Niedermayer | 2007-01-14 | 1 | -3/+6 |
* | simplify | Michael Niedermayer | 2007-01-14 | 1 | -6/+3 |
* | fix 2 warnings | Michael Niedermayer | 2007-01-14 | 1 | -2/+2 |
* | seems i didnt copy anything from aes128.c so this should be more correct ? | Michael Niedermayer | 2007-01-14 | 1 | -1/+3 |
* | unneeded | Michael Niedermayer | 2007-01-14 | 1 | -1/+0 |
* | unused think | Michael Niedermayer | 2007-01-14 | 1 | -2/+2 |
* | merge encrypt and decrypt so the source is simpler and the compiler can choos... | Michael Niedermayer | 2007-01-14 | 1 | -23/+18 |
* | indent | Michael Niedermayer | 2007-01-14 | 1 | -5/+5 |
* | remove duplicate round_key | Michael Niedermayer | 2007-01-14 | 1 | -22/+24 |
* | make decode look more like encode | Michael Niedermayer | 2007-01-14 | 1 | -3/+3 |
* | dont use encode tables for decoding | Michael Niedermayer | 2007-01-14 | 1 | -5/+7 |
* | remove no longer corret comment | Michael Niedermayer | 2007-01-14 | 1 | -1/+1 |
* | unused stuff removial | Michael Niedermayer | 2007-01-14 | 1 | -10/+9 |
* | merge inv_sbox into inv_mix | Michael Niedermayer | 2007-01-14 | 1 | -24/+29 |
* | merge sbox with mix on the encryption side | Michael Niedermayer | 2007-01-14 | 1 | -12/+45 |
* | 1 test vector | Michael Niedermayer | 2007-01-14 | 1 | -1/+11 |
* | fix CONFIG_SMALL case | Michael Niedermayer | 2007-01-14 | 1 | -2/+6 |
* | simplify special round | Michael Niedermayer | 2007-01-14 | 1 | -6/+4 |
* | benchmark | Michael Niedermayer | 2007-01-14 | 1 | -0/+4 |
* | init multbl | Michael Niedermayer | 2007-01-14 | 1 | -6/+28 |
* | ascii | Michael Niedermayer | 2007-01-14 | 1 | -1/+1 |
* | cosmetic | Michael Niedermayer | 2007-01-14 | 1 | -3/+2 |