mirror of
https://git.suyu.dev/suyu/mbedtls.git
synced 2025-12-21 21:36:21 +01:00
Use UTC to heck certificate validity
This commit is contained in:
parent
52c5af7d2d
commit
0776a43788
2 changed files with 3 additions and 2 deletions
|
|
@ -627,7 +627,7 @@ static void x509_get_current_time( x509_time *now )
|
|||
#if defined(_WIN32) && !defined(EFIX64) && !defined(EFI32)
|
||||
SYSTEMTIME st;
|
||||
|
||||
GetLocalTime(&st);
|
||||
GetSystemTime(&st);
|
||||
|
||||
now->year = st.wYear;
|
||||
now->mon = st.wMonth;
|
||||
|
|
@ -640,7 +640,7 @@ static void x509_get_current_time( x509_time *now )
|
|||
time_t tt;
|
||||
|
||||
tt = time( NULL );
|
||||
localtime_r( &tt, < );
|
||||
gmtime_r( &tt, < );
|
||||
|
||||
now->year = lt.tm_year + 1900;
|
||||
now->mon = lt.tm_mon + 1;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue