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
▼
ndnSIM
ndnSIM documentation
All Attributes
All GlobalValues
All LogComponents
All TraceSources
Todo List
Deprecated List
►
Modules
►
Namespaces
►
Classes
▼
Files
►
File List
►
File Members
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Modules
Pages
signing-helpers.cpp
Go to the documentation of this file.
1
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
22
#include "
signing-helpers.hpp
"
23
24
namespace
ndn
{
25
namespace
security
{
26
27
SigningInfo
28
signingByIdentity
(
const
Name
& identity)
29
{
30
return
SigningInfo
(
SigningInfo::SIGNER_TYPE_ID
, identity);
31
}
32
33
SigningInfo
34
signingByKey
(
const
Name
& keyName)
35
{
36
return
SigningInfo
(
SigningInfo::SIGNER_TYPE_KEY
, keyName);
37
}
38
39
SigningInfo
40
signingByCertificate
(
const
Name
& certName)
41
{
42
return
SigningInfo
(
SigningInfo::SIGNER_TYPE_CERT
, certName);
43
}
44
45
SigningInfo
46
signingWithSha256
()
47
{
48
return
SigningInfo
(
SigningInfo::SIGNER_TYPE_SHA256
);
49
}
50
51
}
// namespace security
52
}
// namespace ndn
ndn::security::signingByKey
SigningInfo signingByKey(const Name &keyName)
Definition:
signing-helpers.cpp:34
ndn
Copyright (c) 2011-2015 Regents of the University of California.
Definition:
ndn-strategy-choice-helper.hpp:34
ndn::security::SigningInfo::SIGNER_TYPE_SHA256
use sha256 digest, no signer needs to be specified
Definition:
signing-info.hpp:59
ndn::security::SigningInfo
Signing parameters passed to KeyChain.
Definition:
signing-info.hpp:36
ndn::security::signingByCertificate
SigningInfo signingByCertificate(const Name &certName)
Definition:
signing-helpers.cpp:40
ndn::security::signingByIdentity
SigningInfo signingByIdentity(const Name &identity)
Definition:
signing-helpers.cpp:28
ndn::Name
Name abstraction to represent an absolute name.
Definition:
name.hpp:46
ndn::security::SigningInfo::SIGNER_TYPE_CERT
signer is a certificate, use it directly
Definition:
signing-info.hpp:57
ndn::security::signingWithSha256
SigningInfo signingWithSha256()
Definition:
signing-helpers.cpp:46
ndn::security::SigningInfo::SIGNER_TYPE_KEY
signer is a key, use its default certificate
Definition:
signing-info.hpp:55
ndn::security::SigningInfo::SIGNER_TYPE_ID
signer is an identity, use its default key and default certificate
Definition:
signing-info.hpp:53
signing-helpers.hpp
security
ndnSIM
ndn-cxx
src
security
signing-helpers.cpp
Generated on Wed Jan 11 2017 18:17:14 for ndnSIM by
1.8.13