diff --git a/ChangeLog b/ChangeLog index c062a04d7bb3ed6fad4e50e883e24fe9fbeebdda..f59cc3b78b727256e1fa8b6b28f909a1ac4d346c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -2,6 +2,12 @@ * x86/aes-encrypt.asm (aes_encrypt): Use AES_SUBST_BYTE. * x86/aes-decrypt.asm (aes_decrypt): Likewise. + (aes_decrypt): Use AES_STORE. + (aes_decrypt): Deleted first xchgl instruction into, permuting the + AES_ROUND calls instead. + (aes_decrypt): Likewise for the final round. + (aes_decrypt): Got rid if the xchgl instruction after the final + round, folding it into the final round. * x86/machine.m4: Renamed AES_LAST_ROUND to AES_FINAL_ROUND. Updated users. diff --git a/aes-decrypt.c b/aes-decrypt.c index 55a7265abf87f8291306fe65614337689d37c2cb..50b7f86ffd8c39ead9c4c670657a472a877c1084 100644 --- a/aes-decrypt.c +++ b/aes-decrypt.c @@ -27,7 +27,6 @@ #include <assert.h> - void aes_decrypt(struct aes_ctx *ctx, unsigned length, uint8_t *dst,