#include <ndn-cxx/security/validator-config/checker.hpp>
Classes | |
class | Result |
Public Member Functions | |
Checker (tlv::SignatureTypeValue sigType) | |
virtual | ~Checker ()=default |
Result | check (uint32_t pktType, tlv::SignatureTypeValue sigType, const Name &pktName, const Name &klName, const ValidationState &state) |
Check if packet name and KeyLocator satisfy the checker's conditions. More... | |
Static Public Member Functions | |
static unique_ptr< Checker > | create (const ConfigSection &configSection, const std::string &configFilename) |
Create a checker from configuration section. More... | |
Protected Member Functions | |
virtual Result | checkNames (const Name &pktName, const Name &klName) |
Base version of name checking. More... | |
Static Protected Member Functions | |
static Result | accept () |
static NegativeResultBuilder | reject () |
Protected Attributes | |
tlv::SignatureTypeValue | m_sigType = tlv::SignatureSha256WithEcdsa |
Definition at line 36 of file checker.hpp.
|
explicit |
Definition at line 30 of file checker.cpp.
|
virtualdefault |
|
inlinestaticprotected |
Definition at line 110 of file checker.hpp.
Checker::Result ndn::security::validator_config::Checker::check | ( | uint32_t | pktType, |
tlv::SignatureTypeValue | sigType, | ||
const Name & | pktName, | ||
const Name & | klName, | ||
const ValidationState & | state | ||
) |
Check if packet name and KeyLocator satisfy the checker's conditions.
pktType | tlv::Interest or tlv::Data |
sigType | Signature type |
pktName | packet's name |
klName | KeyLocator's name |
state | Validation state |
Definition at line 68 of file checker.cpp.
|
protectedvirtual |
Base version of name checking.
Reimplemented in ndn::security::validator_config::HyperRelationChecker, ndn::security::validator_config::RegexChecker, and ndn::security::validator_config::NameRelationChecker.
Definition at line 103 of file checker.cpp.
|
static |
Create a checker from configuration section.
configSection | The section containing the definition of checker. |
configFilename | The configuration file name. |
Definition at line 177 of file checker.cpp.
|
staticprotected |
Definition at line 62 of file checker.cpp.
|
protected |
Definition at line 136 of file checker.hpp.