Yingdi Yu | 7036ce2 | 2014-06-19 18:53:37 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
Davide Pesavento | c3dfc24 | 2017-09-14 20:18:48 -0400 | [diff] [blame] | 2 | /* |
Davide Pesavento | 3c7969f | 2018-09-08 15:31:35 -0400 | [diff] [blame] | 3 | * Copyright (c) 2013-2018 Regents of the University of California. |
Yingdi Yu | 7036ce2 | 2014-06-19 18:53:37 -0700 | [diff] [blame] | 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 "key-params.hpp" |
| 23 | |
| 24 | namespace ndn { |
| 25 | |
Davide Pesavento | 648ae9e | 2018-09-08 15:40:02 -0400 | [diff] [blame] | 26 | static const uint32_t MIN_RSA_KEY_SIZE = 2048; |
Yingdi Yu | c08d7d6 | 2015-07-16 21:05:11 -0700 | [diff] [blame] | 27 | static const uint32_t DEFAULT_RSA_KEY_SIZE = 2048; |
Davide Pesavento | 3c7969f | 2018-09-08 15:31:35 -0400 | [diff] [blame] | 28 | static const uint32_t EC_KEY_SIZES[] = {224, 256, 384, 521}; |
| 29 | static const uint32_t DEFAULT_EC_KEY_SIZE = 256; |
Yingdi Yu | c08d7d6 | 2015-07-16 21:05:11 -0700 | [diff] [blame] | 30 | static const uint32_t AES_KEY_SIZES[] = {128, 192, 256}; |
Davide Pesavento | 3c7969f | 2018-09-08 15:31:35 -0400 | [diff] [blame] | 31 | static const uint32_t DEFAULT_AES_KEY_SIZE = 128; |
Yingdi Yu | c08d7d6 | 2015-07-16 21:05:11 -0700 | [diff] [blame] | 32 | |
Yingdi Yu | c08d7d6 | 2015-07-16 21:05:11 -0700 | [diff] [blame] | 33 | KeyParams::KeyParams(KeyType keyType, KeyIdType keyIdType) |
| 34 | : m_keyType(keyType) |
| 35 | , m_keyIdType(keyIdType) |
| 36 | { |
| 37 | BOOST_ASSERT(keyIdType != KeyIdType::USER_SPECIFIED); |
| 38 | } |
| 39 | |
| 40 | KeyParams::KeyParams(KeyType keyType, const name::Component& keyId) |
| 41 | : m_keyType(keyType) |
| 42 | , m_keyIdType(KeyIdType::USER_SPECIFIED) |
| 43 | , m_keyId(keyId) |
| 44 | { |
| 45 | BOOST_ASSERT(!keyId.empty()); |
| 46 | } |
Yingdi Yu | 7036ce2 | 2014-06-19 18:53:37 -0700 | [diff] [blame] | 47 | |
Davide Pesavento | c3dfc24 | 2017-09-14 20:18:48 -0400 | [diff] [blame] | 48 | KeyParams::~KeyParams() = default; |
| 49 | |
| 50 | namespace detail { |
| 51 | |
Yingdi Yu | 7036ce2 | 2014-06-19 18:53:37 -0700 | [diff] [blame] | 52 | uint32_t |
| 53 | RsaKeyParamsInfo::checkKeySize(uint32_t size) |
| 54 | { |
Yingdi Yu | c08d7d6 | 2015-07-16 21:05:11 -0700 | [diff] [blame] | 55 | if (size < MIN_RSA_KEY_SIZE) |
Davide Pesavento | 3c7969f | 2018-09-08 15:31:35 -0400 | [diff] [blame] | 56 | BOOST_THROW_EXCEPTION(KeyParams::Error("Unsupported RSA key size " + to_string(size))); |
Yingdi Yu | c08d7d6 | 2015-07-16 21:05:11 -0700 | [diff] [blame] | 57 | return size; |
Yingdi Yu | 7036ce2 | 2014-06-19 18:53:37 -0700 | [diff] [blame] | 58 | } |
| 59 | |
| 60 | uint32_t |
| 61 | RsaKeyParamsInfo::getDefaultSize() |
| 62 | { |
Yingdi Yu | c08d7d6 | 2015-07-16 21:05:11 -0700 | [diff] [blame] | 63 | return DEFAULT_RSA_KEY_SIZE; |
Yingdi Yu | 7036ce2 | 2014-06-19 18:53:37 -0700 | [diff] [blame] | 64 | } |
| 65 | |
| 66 | uint32_t |
Spyridon Mastorakis | 1ece2e3 | 2015-08-27 18:52:21 -0700 | [diff] [blame] | 67 | EcKeyParamsInfo::checkKeySize(uint32_t size) |
Yingdi Yu | 7036ce2 | 2014-06-19 18:53:37 -0700 | [diff] [blame] | 68 | { |
Spyridon Mastorakis | 1ece2e3 | 2015-08-27 18:52:21 -0700 | [diff] [blame] | 69 | for (size_t i = 0; i < (sizeof(EC_KEY_SIZES) / sizeof(EC_KEY_SIZES[0])); i++) { |
| 70 | if (EC_KEY_SIZES[i] == size) |
Yingdi Yu | c08d7d6 | 2015-07-16 21:05:11 -0700 | [diff] [blame] | 71 | return size; |
| 72 | } |
Davide Pesavento | 3c7969f | 2018-09-08 15:31:35 -0400 | [diff] [blame] | 73 | BOOST_THROW_EXCEPTION(KeyParams::Error("Unsupported EC key size " + to_string(size))); |
Yingdi Yu | 7036ce2 | 2014-06-19 18:53:37 -0700 | [diff] [blame] | 74 | } |
| 75 | |
| 76 | uint32_t |
Spyridon Mastorakis | 1ece2e3 | 2015-08-27 18:52:21 -0700 | [diff] [blame] | 77 | EcKeyParamsInfo::getDefaultSize() |
Yingdi Yu | 7036ce2 | 2014-06-19 18:53:37 -0700 | [diff] [blame] | 78 | { |
Davide Pesavento | 3c7969f | 2018-09-08 15:31:35 -0400 | [diff] [blame] | 79 | return DEFAULT_EC_KEY_SIZE; |
Yingdi Yu | 7036ce2 | 2014-06-19 18:53:37 -0700 | [diff] [blame] | 80 | } |
| 81 | |
Yingdi Yu | 7036ce2 | 2014-06-19 18:53:37 -0700 | [diff] [blame] | 82 | uint32_t |
| 83 | AesKeyParamsInfo::checkKeySize(uint32_t size) |
| 84 | { |
Yingdi Yu | c08d7d6 | 2015-07-16 21:05:11 -0700 | [diff] [blame] | 85 | for (size_t i = 0; i < (sizeof(AES_KEY_SIZES) / sizeof(AES_KEY_SIZES[0])); i++) { |
| 86 | if (AES_KEY_SIZES[i] == size) |
| 87 | return size; |
| 88 | } |
Davide Pesavento | 3c7969f | 2018-09-08 15:31:35 -0400 | [diff] [blame] | 89 | BOOST_THROW_EXCEPTION(KeyParams::Error("Unsupported AES key size " + to_string(size))); |
Yingdi Yu | 7036ce2 | 2014-06-19 18:53:37 -0700 | [diff] [blame] | 90 | } |
| 91 | |
| 92 | uint32_t |
| 93 | AesKeyParamsInfo::getDefaultSize() |
| 94 | { |
Davide Pesavento | 3c7969f | 2018-09-08 15:31:35 -0400 | [diff] [blame] | 95 | return DEFAULT_AES_KEY_SIZE; |
Yingdi Yu | 7036ce2 | 2014-06-19 18:53:37 -0700 | [diff] [blame] | 96 | } |
| 97 | |
Davide Pesavento | c3dfc24 | 2017-09-14 20:18:48 -0400 | [diff] [blame] | 98 | } // namespace detail |
Yingdi Yu | 7036ce2 | 2014-06-19 18:53:37 -0700 | [diff] [blame] | 99 | } // namespace ndn |