Build fixes

This commit is contained in:
Cameron Gutman 2021-04-17 22:00:53 -05:00
parent 4304e597d8
commit 873fc6f837
2 changed files with 5 additions and 1 deletions

View File

@ -77,7 +77,7 @@
#define BSWAP32(x) __builtin_bswap32(x)
#define BSWAP64(x) __builtin_bswap64(x)
#else
#error Please define your platform's byteswap macros!
#error Please define your platform byteswap macros!
#endif
#if (__BYTE_ORDER__ == __ORDER_BIG_ENDIAN__) || defined(__BIG_ENDIAN__)

View File

@ -11,6 +11,10 @@ bool RandomStateInitialized = false;
#include <openssl/evp.h>
#include <openssl/rand.h>
#if OPENSSL_VERSION_NUMBER < 0x10100000L
#define EVP_CIPHER_CTX_reset(x) EVP_CIPHER_CTX_cleanup(x); EVP_CIPHER_CTX_init(x)
#endif
static int addPkcs7PaddingInPlace(unsigned char* plaintext, int plaintextLen) {
int paddedLength = ROUND_TO_PKCS7_PADDED_LEN(plaintextLen);
unsigned char paddingByte = (unsigned char)(16 - (plaintextLen % 16));