AuroraRuntime/Include/Aurora/Crypto/CA/CA.hpp

33 lines
834 B
C++
Raw Normal View History

2021-06-27 21:25:29 +00:00
/***
Copyright (C) 2021 J Reece Wilson (a/k/a "Reece"). All rights reserved.
File: CA.hpp
Date: 2021-6-11
Author: Reece
***/
#pragma once
namespace Aurora::Crypto::RSA
{
class IRSAPublic;
}
2021-06-27 21:25:29 +00:00
namespace Aurora::Crypto::CA
{
class ICertificateStore
{
public:
virtual void AddSignature(const AuSPtr<RSA::IRSAPublic>& CA, const AuList<AuUInt8>& sig,
2021-06-27 21:25:29 +00:00
EHashType method, EPaddingType type) = 0;
virtual void AddPublicCert(const X509::Certificate& cert) = 0;
/// For future support of http gets of the CA list
virtual bool& AllowHTTPTree() = 0;
virtual bool CheckKey(const AuSPtr<RSA::IRSAPublic>& pub) = 0;
2021-06-27 21:25:29 +00:00
virtual bool CheckCert(const X509::Certificate& cert) = 0;
};
AUKN_SHARED_API(NewCA, ICertificateStore);
}