#include #include #include #include #include #include "core.h" #include "crypto_aead_aegis128l.h" #include "crypto_verify_16.h" #include "crypto_verify_32.h" #include "export.h" #include "utils.h" #include "private/common.h" #include "crypto_aead_aegis128l.h" #include "private/softaes.h" #if 1 #include "aegis128l_soft.h" #define AES_BLOCK_LENGTH 16 typedef SoftAesBlock aes_block_t; #define AES_BLOCK_XOR(A, B) softaes_block_xor((A), (B)) #define AES_BLOCK_AND(A, B) softaes_block_and((A), (B)) #define AES_BLOCK_LOAD(A) softaes_block_load(A) #define AES_BLOCK_LOAD_64x2(A, B) softaes_block_load64x2((A), (B)) #define AES_BLOCK_STORE(A, B) softaes_block_store((A), (B)) #define AES_ENC(A, B) softaes_block_encrypt((A), (B)) static inline void aegis128l_update(aes_block_t *const state, const aes_block_t d1, const aes_block_t d2) { aes_block_t tmp; tmp = state[7]; state[7] = AES_ENC(state[6], state[7]); state[6] = AES_ENC(state[5], state[6]); state[5] = AES_ENC(state[4], state[5]); state[4] = AES_ENC(state[3], state[4]); state[3] = AES_ENC(state[2], state[3]); state[2] = AES_ENC(state[1], state[2]); state[1] = AES_ENC(state[0], state[1]); state[0] = AES_ENC(tmp, state[0]); state[0] = AES_BLOCK_XOR(state[0], d1); state[4] = AES_BLOCK_XOR(state[4], d2); } #include "aegis128l_common.h" struct aegis128l_implementation aegis128l_soft_implementation = { SODIUM_C99(.encrypt_detached =) encrypt_detached, SODIUM_C99(.decrypt_detached =) decrypt_detached }; #endif