NS-3 based Named Data Networking (NDN) simulator
ndnSIM 2.5: NDN, CCN, CCNx, content centric networks
API Documentation
public-key.hpp
Go to the documentation of this file.
1 /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2 /*
3  * Copyright (c) 2013-2018 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 #ifndef NDN_CXX_SECURITY_TRANSFORM_PUBLIC_KEY_HPP
23 #define NDN_CXX_SECURITY_TRANSFORM_PUBLIC_KEY_HPP
24 
27 
28 namespace ndn {
29 namespace security {
30 namespace transform {
31 
35 class PublicKey : noncopyable
36 {
37 public:
38  class Error : public std::runtime_error
39  {
40  public:
41  using std::runtime_error::runtime_error;
42  };
43 
44 public:
50  PublicKey();
51 
53 
57  KeyType
58  getKeyType() const;
59 
63  void
64  loadPkcs8(const uint8_t* buf, size_t size);
65 
69  void
70  loadPkcs8(std::istream& is);
71 
75  void
76  loadPkcs8Base64(const uint8_t* buf, size_t size);
77 
81  void
82  loadPkcs8Base64(std::istream& is);
83 
87  void
88  savePkcs8(std::ostream& os) const;
89 
93  void
94  savePkcs8Base64(std::ostream& os) const;
95 
102  encrypt(const uint8_t* plainText, size_t plainLen) const;
103 
104 private:
105  friend class VerifierFilter;
106 
112  void*
113  getEvpPkey() const;
114 
115 private:
117  toPkcs8() const;
118 
120  rsaEncrypt(const uint8_t* plainText, size_t plainLen) const;
121 
122 private:
123  class Impl;
124  const unique_ptr<Impl> m_impl;
125 };
126 
127 } // namespace transform
128 } // namespace security
129 } // namespace ndn
130 
131 #endif // NDN_CXX_SECURITY_TRANSFORM_PUBLIC_KEY_HPP
buf
const uint8_t * buf
Definition: verification-helpers.cpp:47
ndn::KeyType
KeyType
The type of a cryptographic key.
Definition: security-common.hpp:85
ndn::security::transform::PublicKey::~PublicKey
~PublicKey()
ndn::security::transform::PublicKey::encrypt
ConstBufferPtr encrypt(const uint8_t *plainText, size_t plainLen) const
Definition: public-key.cpp:133
transform
ndn::security::transform::PublicKey::loadPkcs8
void loadPkcs8(const uint8_t *buf, size_t size)
Load the public key in PKCS#8 format from a buffer buf.
Definition: public-key.cpp:88
ndn::security::transform::PublicKey::savePkcs8
void savePkcs8(std::ostream &os) const
Save the public key in PKCS#8 format into a stream os.
Definition: public-key.cpp:121
security-common.hpp
ndn::security::transform::VerifierFilter
The module to verify signatures.
Definition: verifier-filter.hpp:41
ndn::security::transform::PublicKey::loadPkcs8Base64
void loadPkcs8Base64(const uint8_t *buf, size_t size)
Load the public key in base64-encoded PKCS#8 format from a buffer buf.
Definition: public-key.cpp:105
ndn::security::transform::PublicKey::Impl
Definition: public-key.cpp:48
ndn::security::transform::PublicKey::PublicKey
PublicKey()
Create an empty public key instance.
Definition: public-key.cpp:64
ndn::security::transform::PublicKey::getKeyType
KeyType getKeyType() const
Get the type of the public key.
Definition: public-key.cpp:72
ndn::security::transform::PublicKey::savePkcs8Base64
void savePkcs8Base64(std::ostream &os) const
Save the public key in base64-encoded PKCS#8 format into a stream os.
Definition: public-key.cpp:127
ndn::security::transform::PublicKey::Error
Definition: public-key.hpp:39
ndn::security::transform::PublicKey
Abstraction of public key in crypto transformation.
Definition: public-key.hpp:36
buffer.hpp
ndn::ConstBufferPtr
shared_ptr< const Buffer > ConstBufferPtr
Definition: buffer.hpp:126
ndn
Copyright (c) 2011-2015 Regents of the University of California.
Definition: ndn-strategy-choice-helper.hpp:34