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
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
0632dae7
Commit
0632dae7
authored
Sep 18, 2015
by
Robert Golebiowski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug #21025377 CAN'T CONNECT TO SSL ENABLED SERVER FIRST 30 SEC AFTER
INITIAL STARTUP Updated yassl to yassl-2.3.7e
parent
4acc7615
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
2 deletions
+9
-2
extra/yassl/README
extra/yassl/README
+7
-0
extra/yassl/include/openssl/ssl.h
extra/yassl/include/openssl/ssl.h
+1
-1
extra/yassl/taocrypt/src/asn.cpp
extra/yassl/taocrypt/src/asn.cpp
+1
-1
No files found.
extra/yassl/README
View file @
0632dae7
...
...
@@ -12,6 +12,13 @@ before calling SSL_new();
*** end Note ***
yaSSL Patch notes, version 2.3.7e (6/26/2015)
This release of yaSSL includes a fix for Date less than comparison.
Previously yaSSL would return true on less than comparisons if the Dates
were equal. Reported by Oracle. No security problem, but if a cert was
generated right now, a server started using it in the same second, and a
client tried to verify it in the same second it would report not yet valid.
yaSSL Patch notes, version 2.3.7d (6/22/2015)
This release of yaSSL includes a fix for input_buffer set_current with
index 0. SSL_peek() at front of waiting data could trigger. Robert
...
...
extra/yassl/include/openssl/ssl.h
View file @
0632dae7
...
...
@@ -35,7 +35,7 @@
#include "rsa.h"
#define YASSL_VERSION "2.3.7
d
"
#define YASSL_VERSION "2.3.7
e
"
#if defined(__cplusplus)
...
...
extra/yassl/taocrypt/src/asn.cpp
View file @
0632dae7
...
...
@@ -71,7 +71,7 @@ bool operator>(tm& a, tm& b)
bool
operator
<
(
tm
&
a
,
tm
&
b
)
{
return
!
(
a
>
b
);
return
(
b
>
a
);
}
...
...
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