1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 23:38:12 +00:00

LibCrypto: Add the GeneralizedTime ASN.1 type

This commit is contained in:
AnotherTest 2021-04-18 13:39:09 +04:30 committed by Andreas Kling
parent a48d365046
commit 581f9ff6bb
2 changed files with 3 additions and 0 deletions

View file

@ -53,6 +53,8 @@ String kind_name(Kind kind)
return "UTF8String";
case Kind::UTCTime:
return "UTCTime";
case Kind::GeneralizedTime:
return "GeneralizedTime";
case Kind::Sequence:
return "Sequence";
case Kind::Set: