Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
MariaDB
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
c1a7a82b
Commit
c1a7a82b
authored
Jan 01, 2021
by
Marko Mäkelä
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
WolfSSL v4.6.0-stable
parent
3454b5cf
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
5 deletions
+5
-5
extra/wolfssl/CMakeLists.txt
extra/wolfssl/CMakeLists.txt
+1
-1
extra/wolfssl/wolfssl
extra/wolfssl/wolfssl
+1
-1
include/ssl_compat.h
include/ssl_compat.h
+3
-3
No files found.
extra/wolfssl/CMakeLists.txt
View file @
c1a7a82b
...
...
@@ -44,7 +44,7 @@ ADD_DEFINITIONS(-DWOLFSSL_LIB -DBUILDING_WOLFSSL)
INCLUDE_DIRECTORIES
(
BEFORE
${
CMAKE_CURRENT_SOURCE_DIR
}
/wolfssl
)
IF
(
MSVC
)
# size_t to long truncation warning
SET
(
CMAKE_C_FLAGS
"
${
CMAKE_C_FLAGS
}
-wd4267 -wd4334 -wd4028"
)
SET
(
CMAKE_C_FLAGS
"
${
CMAKE_C_FLAGS
}
-wd4267 -wd4334 -wd4028
-wd4244
"
)
ENDIF
()
ADD_CONVENIENCE_LIBRARY
(
wolfssl
${
WOLFSSL_SOURCES
}
)
...
...
wolfssl
@
9c87f979
Subproject commit
e116c89a58af750421d82ece13f80516d2bde02e
Subproject commit
9c87f979a7f1d3a6d786b260653d566c1d31a1c4
include/ssl_compat.h
View file @
c1a7a82b
/*
Copyright (c) 2016, 20
17 MariaDB Corporation
Copyright (c) 2016, 20
21, MariaDB Corporation.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
...
...
@@ -73,19 +73,19 @@
#define EVP_MD_CTX_SIZE sizeof(EVP_MD_CTX)
#endif
#define OPENSSL_init_ssl(X,Y) SSL_library_init()
#define DH_set0_pqg(D,P,Q,G) ((D)->p= (P), (D)->g= (G))
#define EVP_CIPHER_CTX_buf_noconst(ctx) ((ctx)->buf)
#define EVP_CIPHER_CTX_encrypting(ctx) ((ctx)->encrypt)
#define EVP_CIPHER_CTX_SIZE sizeof(EVP_CIPHER_CTX)
#ifndef HAVE_WOLFSSL
#define OPENSSL_init_ssl(X,Y) SSL_library_init()
#define EVP_MD_CTX_reset(X) EVP_MD_CTX_cleanup(X)
#define EVP_CIPHER_CTX_reset(X) EVP_CIPHER_CTX_cleanup(X)
#endif
#define X509_get0_notBefore(X) X509_get_notBefore(X)
#define X509_get0_notAfter(X) X509_get_notAfter(X)
#endif
#endif
#ifndef TLS1_3_VERSION
#define SSL_CTX_set_ciphersuites(X,Y) 0
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment