AuroraRuntime/Include/Aurora/Crypto/KeyPair/PrivateKeyPair.hpp

24 lines
508 B
C++
Raw Normal View History

/***
Copyright (C) 2022 Jamie Reece Wilson (a/k/a "Reece"). All rights reserved.
File: PrivateKeyPair.hpp
File: TLSPrivateKeyPair.hpp
Date: 2022-8-26
Author: Reece
***/
#pragma once
namespace Aurora::Crypto::X509
{
struct ICertificateChain;
}
namespace Aurora::Crypto::KeyPair
{
struct PrivateKeyPair
{
AuSPtr<X509::ICertificateChain> pCertificateChain;
AuMemoryViewRead privateKey;
AuString sPassword;
};
}