aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/asm/aes256.asm (unfollow)
Commit message (Collapse)Author
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-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-29aes256ecb.asm: better comments (as in aes192.asm)Egor Tensin
2015-05-24add higher-level encrypt/decrypt functionsEgor Tensin