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