/*** Copyright (C) 2021 J Reece Wilson (a/k/a "Reece"). All rights reserved. File: x509.hpp Date: 2021-6-12 Author: Reece ***/ #pragma once #include "../Crypto.hpp" #include namespace Aurora::Crypto::X509 { struct DecodedCertificate; void DecodeInternal(const mbedtls_x509_crt &crt, DecodedCertificate &out); }