Images 💾

Last commit ⭐

commit 928287b7826ae8670da78a221c72f5380bc58973
Author:     Timothy Flynn <trflynn89@pm.me>
AuthorDate: Thu Mar 7 10:34:45 2024 -0500
Commit:     Ali Mohammad Pur <mpfard@serenityos.org>
CommitDate: Fri Mar 8 00:41:23 2024 +0100

    LibCrypto: Store ASN1 certificate timestamps as UnixDateTime
    
    We are currently using Core::DateTime, which is meant to represent local
    time. However, we are doing no conversion between the parsed time in UTC
    and local time, so we end up comparing time stamps from different time
    zones.
    
    Instead, store the parsed times as UnixDateTime, which is UTC. Then we
    can always compare the parsed times against the current UTC time.
    
    This also lets us store parsed milliseconds.