Fixed wrong header name in aes.c

This commit is contained in:
Peter Schwabe 2019-04-09 14:57:52 +02:00
부모 93c24e34c6
커밋 ed8a4ea2f4

파일 보기

@ -29,7 +29,7 @@
#include <stdint.h>
#include <string.h>
#include "ctaes.h"
#include "aes.h"
static inline uint32_t br_dec32le(const unsigned char *src) {
return (uint32_t)src[0]
@ -249,8 +249,8 @@ static void br_aes_ct64_ortho(uint64_t *q) {
uint64_t a, b; \
a = (x); \
b = (y); \
(x) = (a & (uint64_t)cl) | ((b & (uint64_t)cl) << (s)); \
(y) = ((a & (uint64_t)ch) >> (s)) | (b & (uint64_t)ch); \
(x) = (a & (uint64_t)(cl)) | ((b & (uint64_t)(cl)) << (s)); \
(y) = ((a & (uint64_t)(ch)) >> (s)) | (b & (uint64_t)(ch)); \
} while (0)
#define SWAP2(x, y) SWAPN(0x5555555555555555, 0xAAAAAAAAAAAAAAAA, 1, x, y)