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
Namespace List
+
Namespace Members
+
All
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
+
Functions
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
+
Variables
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
+
Typedefs
a
b
c
d
e
f
h
i
l
m
n
o
p
q
r
s
t
u
v
Enumerations
+
Enumerator
a
b
c
d
e
f
h
i
k
l
m
n
o
p
q
r
s
u
v
+
Classes
Class List
Class Index
Class Hierarchy
+
Class Members
+
All
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
~
+
Functions
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
~
+
Variables
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
w
+
Typedefs
a
b
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
t
u
v
w
Enumerations
+
Enumerator
a
d
e
f
i
k
l
n
p
r
s
u
w
+
Related Functions
b
c
d
e
f
g
i
k
l
m
n
o
p
s
v
+
Files
File List
+
File Members
+
All
a
b
c
d
e
f
g
h
i
k
l
m
n
p
r
s
u
v
w
+
Functions
c
f
h
m
r
s
u
w
+
Variables
a
c
d
g
k
l
n
p
r
s
Typedefs
+
Macros
b
d
e
f
i
l
m
n
p
r
s
u
v
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Modules
Pages
verifier-filter.hpp
Go to the documentation of this file.
1
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
22
#ifndef NDN_CXX_SECURITY_TRANSFORM_VERIFIER_FILTER_HPP
23
#define NDN_CXX_SECURITY_TRANSFORM_VERIFIER_FILTER_HPP
24
25
#include "
transform-base.hpp
"
26
#include "
public-key.hpp
"
27
#include "../security-common.hpp"
28
29
namespace
ndn
{
30
namespace
security
{
31
namespace
transform {
32
38
class
VerifierFilter
:
public
Transform
39
{
40
public
:
44
VerifierFilter
(
DigestAlgorithm
algo,
const
PublicKey
& key,
const
uint8_t* sig,
size_t
sigLen);
45
46
private
:
52
virtual
size_t
53
convert(
const
uint8_t* buf,
size_t
size)
final
;
54
58
virtual
void
59
finalize()
final
;
60
61
private
:
62
class
Impl
;
63
unique_ptr<Impl> m_impl;
64
};
65
66
unique_ptr<Transform>
67
verifierFilter
(
DigestAlgorithm
algo,
const
PublicKey
& key,
const
uint8_t* sig,
size_t
sigLen);
68
69
}
// namespace transform
70
}
// namespace security
71
}
// namespace ndn
72
73
#endif // NDN_CXX_SECURITY_TRANSFORM_VERIFIER_FILTER_HPP
transform-base.hpp
There are three types of module in a transformation chain: Source, Transform, and Sink...
ndn
Copyright (c) 2011-2015 Regents of the University of California.
Definition:
ndn-strategy-choice-helper.hpp:34
ndn::security::transform::VerifierFilter
The module to verify signature.
Definition:
verifier-filter.hpp:38
ndn::security::transform::PublicKey
Abstraction of public key in crypto transformation.
Definition:
public-key.hpp:37
public-key.hpp
ndn::security::transform::VerifierFilter::VerifierFilter
VerifierFilter(DigestAlgorithm algo, const PublicKey &key, const uint8_t *sig, size_t sigLen)
Create a verifier module to verify signature sig using algorithm algo and key.
Definition:
verifier-filter.cpp:57
ndn::security::transform::verifierFilter
unique_ptr< Transform > verifierFilter(DigestAlgorithm algo, const PublicKey &key, const uint8_t *sig, size_t sigLen)
Definition:
verifier-filter.cpp:110
ndn::security::transform::VerifierFilter::Impl
Definition:
verifier-filter.cpp:29
ndn::security::transform::Transform
Abstraction of an intermediate transformation module.
Definition:
transform-base.hpp:185
ndn::DigestAlgorithm
DigestAlgorithm
Definition:
security-common.hpp:70
security
ndnSIM
ndn-cxx
src
security
transform
verifier-filter.hpp
Generated on Wed Jan 11 2017 18:17:14 for ndnSIM by
1.8.13