Commit 0632dae7 authored by Robert Golebiowski's avatar Robert Golebiowski

Bug #21025377 CAN'T CONNECT TO SSL ENABLED SERVER FIRST 30 SEC AFTER

INITIAL STARTUP

Updated yassl to yassl-2.3.7e
parent 4acc7615
......@@ -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
......
......@@ -35,7 +35,7 @@
#include "rsa.h"
#define YASSL_VERSION "2.3.7d"
#define YASSL_VERSION "2.3.7e"
#if defined(__cplusplus)
......
......@@ -71,7 +71,7 @@ bool operator>(tm& a, tm& b)
bool operator<(tm& a, tm&b)
{
return !(a>b);
return (b>a);
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment