AuroraRuntime/Source/Crypto/CA/AuPinGlobal.hpp

17 lines
414 B
C++
Raw Permalink Normal View History

/***
Copyright (C) 2024 Jamie Reece Wilson (a/k/a "Reece"). All rights reserved.
File: AuPinGlobal.hpp
Date: 2024-10-14
Author: Reece
***/
#pragma once
namespace Aurora::Crypto::CA
{
struct GlobalPinner : IPinCertificate
{
bool CheckCertificate(const AuSPtr<X509::ICertificateChain> &pChain,
const AuMemoryViewRead &derCertificate) override;
};
}