blob: 8c2154f539541856d79b6ea4dcd6a243df9a2757 [file] [log] [blame]
Alexander Afanasyevc169a812014-05-20 20:37:29 -04001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Jeff Thompsonc0573432013-09-19 17:41:36 -07002/**
Alexander Afanasyevc169a812014-05-20 20:37:29 -04003 * Copyright (c) 2013-2014 Regents of the University of California.
Alexander Afanasyevdfa52c42014-04-24 21:10:11 -07004 *
5 * This file is part of ndn-cxx library (NDN C++ library with eXperimental eXtensions).
Alexander Afanasyevdfa52c42014-04-24 21:10:11 -07006 *
Alexander Afanasyevc169a812014-05-20 20:37:29 -04007 * 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.
Alexander Afanasyevdfa52c42014-04-24 21:10:11 -070020 *
21 * @author Yingdi Yu <http://irl.cs.ucla.edu/~yingdi/>
22 * @author Alexander Afanasyev <http://lasr.cs.ucla.edu/afanasyev/index.html>
23 * @author Jeff Thompson <jefft0@remap.ucla.edu>
Jeff Thompsonc0573432013-09-19 17:41:36 -070024 */
25
Yingdi Yufc40d872014-02-18 12:56:04 -080026#ifndef NDN_SECURITY_PUBLIC_KEY_HPP
27#define NDN_SECURITY_PUBLIC_KEY_HPP
Jeff Thompsonc0573432013-09-19 17:41:36 -070028
Alexander Afanasyeve2dcdfd2014-02-07 15:53:28 -080029#include "../common.hpp"
Alexander Afanasyev258ec2b2014-05-14 16:15:37 -070030
Yingdi Yu4f324632014-01-15 18:10:03 -080031#include "../encoding/buffer.hpp"
32#include "security-common.hpp"
Jeff Thompsonc0573432013-09-19 17:41:36 -070033
Alexander Afanasyev258ec2b2014-05-14 16:15:37 -070034namespace CryptoPP {
35class BufferedTransformation;
36}
37
Jeff Thompsonc0573432013-09-19 17:41:36 -070038namespace ndn {
39
Alexander Afanasyev2a7f7202014-04-23 14:25:29 -070040class PublicKey
41{
Alexander Afanasyevfdbfc6d2014-04-14 15:12:11 -070042public:
43 class Error : public std::runtime_error
44 {
45 public:
46 explicit
47 Error(const std::string& what)
48 : std::runtime_error(what)
49 {
50 }
51 };
Alexander Afanasyev0ea6e082013-12-26 15:16:37 -080052
Jeff Thompsonc0573432013-09-19 17:41:36 -070053 /**
54 * The default constructor.
55 */
Alexander Afanasyev0ea6e082013-12-26 15:16:37 -080056 PublicKey();
Jeff Thompsonc0573432013-09-19 17:41:36 -070057
58 /**
Alexander Afanasyev770827c2014-05-13 17:42:55 -070059 * @brief Create a new PublicKey from @param keyDerBuf in DER buffer
Alexander Afanasyev0ea6e082013-12-26 15:16:37 -080060 *
Alexander Afanasyev770827c2014-05-13 17:42:55 -070061 * @param keyDerBuf The pointer to the first byte of buffer containing DER of public key
62 * @param keyDerSize Size of the buffer
63 *
64 * @throws PublicKey::Error If DER in buffer cannot be decoded
Jeff Thompsonc0573432013-09-19 17:41:36 -070065 */
Yingdi Yu4b8c6a22014-04-15 23:00:54 -070066 PublicKey(const uint8_t* keyDerBuf, size_t keyDerSize);
Alexander Afanasyev0ea6e082013-12-26 15:16:37 -080067
Alexander Afanasyevbf1a67a2014-01-05 23:36:13 -080068 inline const Buffer&
Alexander Afanasyev0ea6e082013-12-26 15:16:37 -080069 get() const
Jeff Thompsonc0573432013-09-19 17:41:36 -070070 {
Yingdi Yu4b8c6a22014-04-15 23:00:54 -070071 return m_key;
Jeff Thompsonc0573432013-09-19 17:41:36 -070072 }
73
Alexander Afanasyevbf1a67a2014-01-05 23:36:13 -080074 inline void
Yingdi Yu4b8c6a22014-04-15 23:00:54 -070075 set(const uint8_t* keyDerBuf, size_t keyDerSize)
Alexander Afanasyev0ea6e082013-12-26 15:16:37 -080076 {
77 Buffer buf(keyDerBuf, keyDerSize);
Yingdi Yu4b8c6a22014-04-15 23:00:54 -070078 m_key.swap(buf);
Alexander Afanasyev0ea6e082013-12-26 15:16:37 -080079 }
Jeff Thompsonc0573432013-09-19 17:41:36 -070080
Alexander Afanasyev0ea6e082013-12-26 15:16:37 -080081 void
Alexander Afanasyevfdbfc6d2014-04-14 15:12:11 -070082 encode(CryptoPP::BufferedTransformation& out) const;
Jeff Thompsonc0573432013-09-19 17:41:36 -070083
Alexander Afanasyev0ea6e082013-12-26 15:16:37 -080084 void
Alexander Afanasyevfdbfc6d2014-04-14 15:12:11 -070085 decode(CryptoPP::BufferedTransformation& in);
Jeff Thompsonc0573432013-09-19 17:41:36 -070086
Alexander Afanasyevbf1a67a2014-01-05 23:36:13 -080087 inline bool
Yingdi Yu4b8c6a22014-04-15 23:00:54 -070088 operator==(const PublicKey& key) const
Alexander Afanasyevbf1a67a2014-01-05 23:36:13 -080089 {
Yingdi Yu4b8c6a22014-04-15 23:00:54 -070090 return m_key == key.m_key;
Alexander Afanasyevbf1a67a2014-01-05 23:36:13 -080091 }
92
93 inline bool
Yingdi Yu4b8c6a22014-04-15 23:00:54 -070094 operator!=(const PublicKey& key) const
Alexander Afanasyevbf1a67a2014-01-05 23:36:13 -080095 {
Yingdi Yu4b8c6a22014-04-15 23:00:54 -070096 return m_key != key.m_key;
Alexander Afanasyevbf1a67a2014-01-05 23:36:13 -080097 }
Alexander Afanasyevfdbfc6d2014-04-14 15:12:11 -070098
Jeff Thompsonc0573432013-09-19 17:41:36 -070099private:
Yingdi Yu4b8c6a22014-04-15 23:00:54 -0700100 Buffer m_key;
Jeff Thompsonc0573432013-09-19 17:41:36 -0700101};
102
Alexander Afanasyevfdbfc6d2014-04-14 15:12:11 -0700103std::ostream&
Yingdi Yu4b8c6a22014-04-15 23:00:54 -0700104operator<<(std::ostream& os, const PublicKey& key);
Alexander Afanasyev0ea6e082013-12-26 15:16:37 -0800105
Yingdi Yufc40d872014-02-18 12:56:04 -0800106} // namespace ndn
Jeff Thompsonc0573432013-09-19 17:41:36 -0700107
Yingdi Yufc40d872014-02-18 12:56:04 -0800108#endif //NDN_SECURITY_PUBLIC_KEY_HPP