Reece Wilson
d9dd1182b9
[*] ISocket::Shutdown(*bool bNow*), allowing for flush of the send channel when false [*] Fix StartRead and StartWrite after shutdown (NT) [*] Amended dead-lock
18 lines
359 B
C++
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);
|
|
} |