blob: c231cc5b3116935a263d018344c17b60ca9c0c8f [file] [log] [blame]
Yingdi Yu1b0311c2015-06-10 14:58:47 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
3 * Copyright (c) 2013-2015 Regents of the University of California.
4 *
5 * This file is part of ndn-cxx library (NDN C++ library with eXperimental eXtensions).
6 *
7 * ndn-cxx library is free software: you can redistribute it and/or modify it under the
8 * terms of the GNU Lesser General Public License as published by the Free Software
9 * Foundation, either version 3 of the License, or (at your option) any later version.
10 *
11 * ndn-cxx library is distributed in the hope that it will be useful, but WITHOUT ANY
12 * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
13 * PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
14 *
15 * You should have received copies of the GNU General Public License and GNU Lesser
16 * General Public License along with ndn-cxx, e.g., in COPYING.md file. If not, see
17 * <http://www.gnu.org/licenses/>.
18 *
19 * See AUTHORS.md for complete list of ndn-cxx authors and contributors.
20 */
21
22#include "signing-info.hpp"
23
24namespace ndn {
25namespace security {
26
27const Name SigningInfo::EMPTY_NAME;
28const SignatureInfo SigningInfo::EMPTY_SIGNATURE_INFO;
29
30SigningInfo::SigningInfo(SignerType signerType,
31 const Name& signerName,
32 const SignatureInfo& signatureInfo)
33 : m_type(signerType)
34 , m_name(signerName)
35 , m_digestAlgorithm(DIGEST_ALGORITHM_SHA256)
36 , m_info(signatureInfo)
37{
38}
39
40void
41SigningInfo::setSigningIdentity(const Name& identity)
42{
43 m_type = SIGNER_TYPE_ID;
44 m_name = identity;
45}
46void
47SigningInfo::setSigningKeyName(const Name& keyName)
48{
49 m_type = SIGNER_TYPE_KEY;
50 m_name = keyName;
51}
52
53void
54SigningInfo::setSigningCertName(const Name& certificateName)
55{
56 m_type = SIGNER_TYPE_CERT;
57 m_name = certificateName;
58}
59
60void
61SigningInfo::setSha256Signing()
62{
63 m_type = SIGNER_TYPE_SHA256;
64 m_name.clear();
65}
66
67void
68SigningInfo::setSignatureInfo(const SignatureInfo& signatureInfo)
69{
70 m_info = signatureInfo;
71}
72
73} // namespace ndn
74} // namespace security