summaryrefslogtreecommitdiff
path: root/aes256-encrypt.c
Commit message (Collapse)AuthorAgeFilesLines
* [S390x] Fat build support for AES and GHASHMamone Tarsha2021-07-101-1/+10
|
* Split aes-encrypt.c and aes-decrypt.c into one file per key size.Niels Möller2021-04-011-0/+50
Move aes128_encrypt and similar functions to their own files. To make it easier for assembly implementations to override specific AES variants. * aes-decrypt.c: Split file, keep only legacy function aes_decrypt here. * aes-decrypt-table.c (_nettle_aes_decrypt_table): New file, moved table here. * aes128-decrypt.c (aes128_decrypt): New file, moved function here. * aes192-decrypt.c (aes192_decrypt): New file, moved function here. * aes256-decrypt.c (aes256_decrypt): New file, moved function here. * aes-encrypt.c: Split file, keep only legacy function aes_encrypt here. * aes128-encrypt.c (aes128_encrypt): New file, moved function here. * aes192-encrypt.c (aes192_encrypt): New file, moved function here. * aes256-encrypt.c (aes256_encrypt): New file, moved function here. * Makefile.in (nettle_SOURCES): Add new files.