diff options
Diffstat (limited to 'src/lib/libcrypto/aes/aes_locl.h')
-rw-r--r-- | src/lib/libcrypto/aes/aes_locl.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/lib/libcrypto/aes/aes_locl.h b/src/lib/libcrypto/aes/aes_locl.h index 1d0e86331e..ac2fbff465 100644 --- a/src/lib/libcrypto/aes/aes_locl.h +++ b/src/lib/libcrypto/aes/aes_locl.h | |||
@@ -65,11 +65,7 @@ | |||
65 | #define GETU32(pt) (((u32)(pt)[0] << 24) ^ ((u32)(pt)[1] << 16) ^ ((u32)(pt)[2] << 8) ^ ((u32)(pt)[3])) | 65 | #define GETU32(pt) (((u32)(pt)[0] << 24) ^ ((u32)(pt)[1] << 16) ^ ((u32)(pt)[2] << 8) ^ ((u32)(pt)[3])) |
66 | #define PUTU32(ct, st) { (ct)[0] = (u8)((st) >> 24); (ct)[1] = (u8)((st) >> 16); (ct)[2] = (u8)((st) >> 8); (ct)[3] = (u8)(st); } | 66 | #define PUTU32(ct, st) { (ct)[0] = (u8)((st) >> 24); (ct)[1] = (u8)((st) >> 16); (ct)[2] = (u8)((st) >> 8); (ct)[3] = (u8)(st); } |
67 | 67 | ||
68 | #ifdef AES_LONG | ||
69 | typedef unsigned long u32; | ||
70 | #else | ||
71 | typedef unsigned int u32; | 68 | typedef unsigned int u32; |
72 | #endif | ||
73 | typedef unsigned short u16; | 69 | typedef unsigned short u16; |
74 | typedef unsigned char u8; | 70 | typedef unsigned char u8; |
75 | 71 | ||