/*** 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 GetChain() = 0; }; }