AuroraRuntime/Source/Crypto/X509/x509.hpp
Reece Wilson d9dd1182b9 [+] TLS pinning
[*] ISocket::Shutdown(*bool bNow*), allowing for flush of the send channel when false
[*] Fix StartRead and StartWrite after shutdown (NT)
[*] Amended dead-lock
2022-11-18 04:44:47 +00:00

18 lines
359 B
C++

/***
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);
}