aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/asm/aes192.asm (unfollow)
Commit message (Collapse)Author
2016-05-19'aesni' -> 'aes'Egor Tensin
2015-07-28refactoringEgor Tensin
Namely, rename API functions to facilitate metaprogramming using preprocessor macros.
2015-06-17refactoringEgor Tensin
2015-06-11refactoringEgor Tensin
2015-06-10fix register usage in the asm implementationEgor Tensin
Apparently, the previously used xmm6/xmm7 registers are exactly the wrong ones to use for storing temp values. The xmm4/xmm5, on the other hand hand, don't need to be preserved, so I switched to those.
2015-06-10src/aes*.asm -> src/asm/, src/aes*.c -> src/c/Egor Tensin
2015-06-10refactoringEgor Tensin
2015-06-05refactoringEgor Tensin
2015-06-05aes192.asm: bugfixEgor Tensin
No more buffer overruns.
2015-06-03implement CBC wrappers in CEgor Tensin
2015-05-31code styleEgor Tensin
2015-05-30detach key expansion routinesEgor Tensin
Block encryption/decryption routines now don't expand key schedules on each call.
2015-05-30support AES-{128,192}-cbcEgor Tensin
2015-05-29merge aes256{ecb,cbc}.asmEgor Tensin
2015-05-29aes192: bytes to bits in shifts in commentsEgor Tensin
2015-05-29aes192: more comments & optimize key generationEgor Tensin
2015-05-24add higher-level encrypt/decrypt functionsEgor Tensin
2015-05-22code styleEgor Tensin