File tree Expand file tree Collapse file tree 3 files changed +9
-2
lines changed Expand file tree Collapse file tree 3 files changed +9
-2
lines changed Original file line number Diff line number Diff 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+
1522yaSSL 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
Original file line number Diff line number Diff line change 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)
Original file line number Diff line number Diff line change @@ -119,7 +119,7 @@ bool operator>(tm& a, tm& b)
119119
120120bool operator <(tm& a, tm&b)
121121{
122- return !(a>b );
122+ return (b>a );
123123}
124124
125125
You can’t perform that action at this time.
0 commit comments