AuroraRuntime/Source/Crypto/X509/x509.hpp

18 lines
359 B
C++
Raw Normal View History

2021-06-27 21:25:29 +00:00
/***
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 <mbedtls/x509_crt.h>
namespace Aurora::Crypto::X509
{
struct DecodedCertificate;
void DecodeInternal(const mbedtls_x509_crt &crt, DecodedCertificate &out);
}