Skip to content

Commit 88ef4ec

Browse files
Robert Golebiowskibjornmu
authored andcommitted
Bug #21025377 CAN'T CONNECT TO SSL ENABLED SERVER FIRST 30 SEC AFTER
INITIAL STARTUP Updated yassl to yassl-2.3.7e (cherry picked from commit 6e21c8c04b922bdb60b6a7c174709d2e1bdd3618)
1 parent 0f6bab9 commit 88ef4ec

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

extra/yassl/README

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,13 @@ before calling SSL_new();
1212

1313
*** end Note ***
1414

15+
yaSSL Patch notes, version 2.3.7e (6/26/2015)
16+
This release of yaSSL includes a fix for Date less than comparison.
17+
Previously yaSSL would return true on less than comparisons if the Dates
18+
were equal. Reported by Oracle. No security problem, but if a cert was
19+
generated right now, a server started using it in the same second, and a
20+
client tried to verify it in the same second it would report not yet valid.
21+
1522
yaSSL Patch notes, version 2.3.7d (6/22/2015)
1623
This release of yaSSL includes a fix for input_buffer set_current with
1724
index 0. SSL_peek() at front of waiting data could trigger. Robert

extra/yassl/include/openssl/ssl.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
#include "rsa.h"
3535

3636

37-
#define YASSL_VERSION "2.3.7d"
37+
#define YASSL_VERSION "2.3.7e"
3838

3939

4040
#if defined(__cplusplus)

extra/yassl/taocrypt/src/asn.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ bool operator>(tm& a, tm& b)
119119

120120
bool operator<(tm& a, tm&b)
121121
{
122-
return !(a>b);
122+
return (b>a);
123123
}
124124

125125

0 commit comments

Comments
 (0)