diff options
Diffstat (limited to 'crypto/aes/aes_local.h')
-rw-r--r-- | crypto/aes/aes_local.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/crypto/aes/aes_local.h b/crypto/aes/aes_local.h index cc8456861d928..a9c0059e52ccb 100644 --- a/crypto/aes/aes_local.h +++ b/crypto/aes/aes_local.h @@ -1,5 +1,5 @@ /* - * Copyright 2002-2016 The OpenSSL Project Authors. All Rights Reserved. + * Copyright 2002-2020 The OpenSSL Project Authors. All Rights Reserved. * * Licensed under the OpenSSL license (the "License"). You may not use * this file except in compliance with the License. You can obtain a copy @@ -24,6 +24,7 @@ # define PUTU32(ct, st) { (ct)[0] = (u8)((st) >> 24); (ct)[1] = (u8)((st) >> 16); (ct)[2] = (u8)((st) >> 8); (ct)[3] = (u8)(st); } # endif +typedef unsigned long long u64; # ifdef AES_LONG typedef unsigned long u32; # else |