ndn-cxx: NDN C++ library with eXperimental eXtensions 0.6.0 documentation
Main Page
Related Pages
Modules
Namespaces
Classes
Files
File List
File Members
tlv.cpp
Go to the documentation of this file.
1
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
22
#include "
tlv.hpp
"
23
24
namespace
ndn
{
25
namespace
tlv {
26
27
std::ostream&
28
operator<<
(std::ostream& os,
const
SignatureTypeValue
& signatureType)
29
{
30
switch
(signatureType) {
31
case
SignatureTypeValue::DigestSha256
:
32
return
os <<
"DigestSha256"
;
33
case
SignatureTypeValue::SignatureSha256WithRsa
:
34
return
os <<
"SignatureSha256WithRsa"
;
35
case
SignatureTypeValue::SignatureSha256WithEcdsa
:
36
return
os <<
"SignatureSha256WithEcdsa"
;
37
}
38
return
os <<
"Unknown Signature Type"
;
39
}
40
41
}
// namespace tlv
42
}
// namespace ndn
tlv.hpp
ndn
Copyright (c) 2013-2017 Regents of the University of California.
Definition:
common.hpp:66
ndn::tlv::SignatureSha256WithRsa
Definition:
encoding/tlv.hpp:101
ndn::tlv::DigestSha256
Definition:
encoding/tlv.hpp:100
ndn::tlv::SignatureTypeValue
SignatureTypeValue
Definition:
encoding/tlv.hpp:99
ndn::tlv::SignatureSha256WithEcdsa
Definition:
encoding/tlv.hpp:103
ndn::tlv::operator<<
std::ostream & operator<<(std::ostream &os, const SignatureTypeValue &signatureType)
Definition:
tlv.cpp:28
src
encoding
tlv.cpp
Generated on Mon Oct 16 2017 13:31:26 for ndn-cxx: NDN C++ library with eXperimental eXtensions by
1.8.11