NS-3 based Named Data Networking (NDN) simulator
ndnSIM 2.5: NDN, CCN, CCNx, content centric networks
API Documentation
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& identityName)
29 {
30  return SigningInfo(SigningInfo::SIGNER_TYPE_ID, identityName);
31 }
32 
33 SigningInfo
34 signingByIdentity(const Identity& identity)
35 {
36  return SigningInfo(identity);
37 }
38 
39 SigningInfo
40 signingByKey(const Name& keyName)
41 {
43 }
44 
45 SigningInfo
46 signingByKey(const Key& key)
47 {
48  return SigningInfo(key);
49 }
50 
51 SigningInfo
52 signingByCertificate(const Name& certName)
53 {
55 }
56 
57 SigningInfo
59 {
61 }
62 
63 SigningInfo
65 {
67 }
68 
69 } // namespace security
70 } // namespace ndn
SigningInfo signingByKey(const Name &keyName)
Copyright (c) 2011-2015 Regents of the University of California.
The certificate following the certificate format naming convention.
Definition: certificate.hpp:81
const Name & getName() const
Get name.
Definition: data.hpp:128
use sha256 digest, no signer needs to be specified
Signing parameters passed to KeyChain.
SigningInfo signingByCertificate(const Name &certName)
A frontend handle of a key instance.
Definition: key.hpp:49
Represents an absolute name.
Definition: name.hpp:42
signer is a certificate, use it directly
SigningInfo signingWithSha256()
signer is a key, use its default certificate
SigningInfo signingByIdentity(const Name &identityName)
signer is an identity, use its default key and default certificate
A frontend handle of an Identity.
Definition: identity.hpp:42