Reece Wilson
d68fc7fc91
[+] ByteBuffer::GetNextLinearWrite() [-] ByteBuffer::WriterTryGetWriteHeadFor [+] ITLSPrivateKeyPair [+] ITLSContext::GetFatalErrorCodeAsString() [+] Begin to add certificate chains [*] Clean up TLS
18 lines
399 B
C++
18 lines
399 B
C++
/***
|
|
Copyright (C) 2022 J Reece Wilson (a/k/a "Reece"). All rights reserved.
|
|
|
|
File: ITLSPrivateKeyPair.hpp
|
|
Date: 2022-8-27
|
|
Author: Reece
|
|
***/
|
|
#pragma once
|
|
|
|
namespace Aurora::IO::TLS
|
|
{
|
|
struct ITLSPrivateKeyPair
|
|
{
|
|
virtual AuSPtr<ICertificateChain> GetChain() = 0;
|
|
};
|
|
|
|
AUKN_SYM AuSPtr<ITLSPrivateKeyPair> ImportPrivateKeyPair(const TLSPrivateKeyPair &keyPair);
|
|
} |