1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 18:27:35 +00:00

LibTLS+Base: Rework default system certificate parser

Change the default system certificate parser from our arbitrary
INI format to well-known PEM format.
This commit is contained in:
Fabian Dellwing 2023-03-14 14:14:01 +01:00 committed by Ali Mohammad Pur
parent da6130a6d8
commit 12cd74495a
3 changed files with 38 additions and 264 deletions

View file

@ -132,7 +132,7 @@ public:
Vector<Certificate> const& certificates() const { return m_ca_certificates; }
void reload_certificates(Core::ConfigFile&);
void reload_certificates(ByteBuffer&);
static DefaultRootCACertificates& the() { return s_the; }