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

36 lines
903 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:
2021-09-18 20:10:25 +00:00
virtual void AddSignature(const AuSPtr<RSA::IRSAPublic> &CA,
const AuList<AuUInt8> &sig,
EHashType method,
EPaddingType type) = 0;
2021-09-18 20:10:25 +00:00
virtual void AddPublicCert(const X509::Certificate &cert) = 0;
2021-06-27 21:25:29 +00:00
/// For future support of http gets of the CA list
virtual bool& AllowHTTPTree() = 0;
2021-09-18 20:10:25 +00:00
virtual bool CheckKey(const AuSPtr<RSA::IRSAPublic> &pub) = 0;
virtual bool CheckCert(const X509::Certificate &cert) = 0;
2021-06-27 21:25:29 +00:00
};
AUKN_SHARED_API(NewCA, ICertificateStore);
}