18 lines
465 B
C++
18 lines
465 B
C++
/***
|
|
Copyright (C) 2022 J Reece Wilson (a/k/a "Reece"). All rights reserved.
|
|
|
|
File: IPinCertificate.hpp
|
|
Date: 2022-8-26
|
|
Author: Reece
|
|
***/
|
|
#pragma once
|
|
|
|
namespace Aurora::IO::TLS
|
|
{
|
|
struct NetError;
|
|
|
|
AUKN_INTERFACE(IPinCertificate,
|
|
AUI_METHOD(bool, CheckCertificate, (const AuSPtr<ICertificateChain> &, pChain,
|
|
const Memory::MemoryViewRead &, derCertificate))
|
|
);
|
|
} |