NS-3 based Named Data Networking (NDN) simulator
ndnSIM 2.3: NDN, CCN, CCNx, content centric networks
API Documentation
validation-policy-simple-hierarchy.hpp
Go to the documentation of this file.
1 /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
22 #ifndef NDN_SECURITY_V2_VALIDATION_POLICY_SIMPLE_HIERARCHY_HPP
23 #define NDN_SECURITY_V2_VALIDATION_POLICY_SIMPLE_HIERARCHY_HPP
24 
25 #include "validation-policy.hpp"
26 
27 namespace ndn {
28 namespace security {
29 namespace v2 {
30 
35 {
36 public:
37  void
38  checkPolicy(const Data& data, const shared_ptr<ValidationState>& state,
39  const ValidationContinuation& continueValidation) override;
40 
41  void
42  checkPolicy(const Interest& interest, const shared_ptr<ValidationState>& state,
43  const ValidationContinuation& continueValidation) override;
44 };
45 
46 } // namespace v2
47 } // namespace security
48 } // namespace ndn
49 
50 #endif // NDN_SECURITY_V2_VALIDATION_POLICY_SIMPLE_HIERARCHY_HPP
Copyright (c) 2011-2015 Regents of the University of California.
represents an Interest packet
Definition: interest.hpp:42
Abstraction that implements validation policy for Data and Interest packets.
Catch-all error for security policy errors that don&#39;t fit in other categories.
Definition: base.hpp:79
Validation policy for a simple hierarchical trust model.
void checkPolicy(const Data &data, const shared_ptr< ValidationState > &state, const ValidationContinuation &continueValidation) override
Check data against the policy.
std::function< void(const shared_ptr< CertificateRequest > &certRequest, const shared_ptr< ValidationState > &state)> ValidationContinuation
Represents a Data packet.
Definition: data.hpp:35