/*** 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 CertificateDecoded; bool DecodeInternal(const mbedtls_x509_crt &crt, CertificateDecoded &out); }