Reece
b2311a8824
[+] IProcessSectionMapView::UnlockSwap [*] Fix critical tag under ILogger [*] Added missing includes to experimental APIs
18 lines
362 B
C++
18 lines
362 B
C++
/***
|
|
Copyright (C) 2022 J Reece Wilson (a/k/a "Reece"). All rights reserved.
|
|
|
|
File: TLSPrivateKeyPair.hpp
|
|
Date: 2022-8-26
|
|
Author: Reece
|
|
***/
|
|
#pragma once
|
|
|
|
namespace Aurora::IO::TLS
|
|
{
|
|
struct TLSPrivateKeyPair
|
|
{
|
|
AuList<Memory::ByteBuffer> certificateChain;
|
|
Memory::ByteBuffer privateKey;
|
|
AuString sPassword;
|
|
};
|
|
} |