Skip to content

Commit 0632dae

Browse files
author
Robert Golebiowski
committed
Bug #21025377 CAN'T CONNECT TO SSL ENABLED SERVER FIRST 30 SEC AFTER
INITIAL STARTUP Updated yassl to yassl-2.3.7e
1 parent 4acc761 commit 0632dae

3 files changed

Lines changed: 9 additions & 2 deletions

File tree

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
@@ -35,7 +35,7 @@
3535
#include "rsa.h"
3636

3737

38-
#define YASSL_VERSION "2.3.7d"
38+
#define YASSL_VERSION "2.3.7e"
3939

4040

4141
#if defined(__cplusplus)

extra/yassl/taocrypt/src/asn.cpp

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

7272
bool operator<(tm& a, tm&b)
7373
{
74-
return !(a>b);
74+
return (b>a);
7575
}
7676

7777

0 commit comments

Comments
 (0)