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

22 lines
413 B
C++
Raw Normal View History

/***
Copyright (C) 2022 Jamie Reece Wilson (a/k/a "Reece"). All rights reserved.
File: IPrivateKeyPair.hpp
File: ITLSPrivateKeyPair.hpp
Date: 2022-8-27
Author: Reece
***/
#pragma once
namespace Aurora::Crypto::X509
{
struct ICertificateChain;
}
namespace Aurora::Crypto::KeyPair
{
struct IPrivateKeyPair
{
virtual AuSPtr<X509::ICertificateChain> GetChain() = 0;
};
}