NS-3 based Named Data Networking (NDN) simulator
ndnSIM 2.3: NDN, CCN, CCNx, content centric networks
API Documentation
Main Page
Related Pages
Modules
Namespaces
Classes
Files
File List
File Members
validation-error.cpp
Go to the documentation of this file.
1
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
22
#include "
validation-error.hpp
"
23
24
#include <ostream>
25
26
namespace
ndn
{
27
namespace
security
{
28
namespace
v2 {
29
30
std::ostream&
31
operator<<
(std::ostream& os,
ValidationError::Code
code)
32
{
33
switch
(code) {
34
case
ValidationError::Code::NO_ERROR:
35
return
os <<
"No error"
;
36
case
ValidationError::Code::INVALID_SIGNATURE:
37
return
os <<
"Invalid signature"
;
38
case
ValidationError::Code::NO_SIGNATURE:
39
return
os <<
"Missing signature"
;
40
case
ValidationError::Code::CANNOT_RETRIEVE_CERT:
41
return
os <<
"Cannot retrieve certificate"
;
42
case
ValidationError::Code::EXPIRED_CERT:
43
return
os <<
"Certificate expired"
;
44
case
ValidationError::Code::LOOP_DETECTED:
45
return
os <<
"Loop detected in certification chain"
;
46
case
ValidationError::Code::MALFORMED_CERT:
47
return
os <<
"Malformed certificate"
;
48
case
ValidationError::Code::EXCEEDED_DEPTH_LIMIT:
49
return
os <<
"Exceeded validation depth limit"
;
50
case
ValidationError::Code::INVALID_KEY_LOCATOR:
51
return
os <<
"Key locator violates validation policy"
;
52
case
ValidationError::Code::POLICY_ERROR:
53
return
os <<
"Validation policy error"
;
54
case
ValidationError::Code::IMPLEMENTATION_ERROR:
55
return
os <<
"Internal implementation error"
;
56
case
ValidationError::Code::USER_MIN:
57
break
;
58
}
59
if
(code >= ValidationError::Code::USER_MIN) {
60
return
os <<
"Custom error code "
<<
static_cast<
uint32_t
>
(code);
61
}
62
else
{
63
return
os <<
"Unrecognized error code "
<<
static_cast<
uint32_t
>
(code);
64
}
65
}
66
67
std::ostream&
68
operator<<
(std::ostream& os,
const
ValidationError
& error)
69
{
70
os << static_cast<ValidationError::Code>(error.
getCode
());
71
if
(!error.
getInfo
().empty()) {
72
os <<
" ("
<< error.
getInfo
() <<
")"
;
73
}
74
return
os;
75
}
76
77
}
// namespace v2
78
}
// namespace security
79
}
// namespace ndn
ndn
Copyright (c) 2011-2015 Regents of the University of California.
Definition:
ndn-strategy-choice-helper.hpp:34
ndn::security::v2::ValidationError::Code
Code
Known validation error code.
Definition:
validation-error.hpp:41
websocketpp::transport::asio::socket::error::security
Catch-all error for security policy errors that don't fit in other categories.
Definition:
base.hpp:79
ndn::security::v2::ValidationError::getInfo
const std::string & getInfo() const
Definition:
validation-error.hpp:73
ndn::security::v2::ValidationError::getCode
uint32_t getCode() const
Definition:
validation-error.hpp:67
ndn::security::v2::operator<<
std::ostream & operator<<(std::ostream &os, const AdditionalDescription &other)
Definition:
additional-description.cpp:178
ndn::security::v2::ValidationError
Validation error code and optional detailed error message.
Definition:
validation-error.hpp:34
validation-error.hpp
ndnSIM
ndn-cxx
src
security
v2
validation-error.cpp
Generated on Thu Nov 2 2017 03:30:28 for ndnSIM by
1.8.11