diff options
author | Vladislav Vaintroub <wlad@mariadb.com> | 2020-05-05 18:10:53 +0200 |
---|---|---|
committer | Sergei Golubchik <serg@mariadb.org> | 2020-05-08 11:51:03 +0200 |
commit | 403dc759d0bc5d045da06fb326cdf59b23084953 (patch) | |
tree | 159f9cada54d23a231c81f98fad2f8ef5a912d6e /include/mysql | |
parent | 8d85715d507de8937a181e999501e205ff3dca34 (diff) | |
download | mariadb-git-403dc759d0bc5d045da06fb326cdf59b23084953.tar.gz |
Update WolfSSL
Fix WolfSSL build:
- Do not build with TLSv1.0,it stopped working,at least with SChannel client
- Disable a test that depends on TLSv1.0
- define FP_MAX_BITS always, to fix 32bit builds.
- Increase MAX_AES_CTX_SIZE, to fix build on Linux
Diffstat (limited to 'include/mysql')
-rw-r--r-- | include/mysql/service_my_crypt.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/mysql/service_my_crypt.h b/include/mysql/service_my_crypt.h index 039125066ca..930d12a7dd1 100644 --- a/include/mysql/service_my_crypt.h +++ b/include/mysql/service_my_crypt.h @@ -45,7 +45,7 @@ extern "C" { /* The max key length of all supported algorithms */ #define MY_AES_MAX_KEY_LENGTH 32 -#define MY_AES_CTX_SIZE 600 +#define MY_AES_CTX_SIZE 640 enum my_aes_mode { MY_AES_ECB, MY_AES_CBC |