Yingdi Yu | 7036ce2 | 2014-06-19 18:53:37 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /** |
Spyridon Mastorakis | 1ece2e3 | 2015-08-27 18:52:21 -0700 | [diff] [blame] | 3 | * Copyright (c) 2013-2017 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 | |
Yingdi Yu | c08d7d6 | 2015-07-16 21:05:11 -0700 | [diff] [blame] | 26 | static const uint32_t MIN_RSA_KEY_SIZE = 1024; |
| 27 | static const uint32_t DEFAULT_RSA_KEY_SIZE = 2048; |
Spyridon Mastorakis | 1ece2e3 | 2015-08-27 18:52:21 -0700 | [diff] [blame] | 28 | static const uint32_t EC_KEY_SIZES[] = {256, 384}; |
Yingdi Yu | c08d7d6 | 2015-07-16 21:05:11 -0700 | [diff] [blame] | 29 | static const uint32_t AES_KEY_SIZES[] = {128, 192, 256}; |
| 30 | |
| 31 | KeyParams::~KeyParams() = default; |
| 32 | |
| 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 | |
| 48 | uint32_t |
| 49 | RsaKeyParamsInfo::checkKeySize(uint32_t size) |
| 50 | { |
Yingdi Yu | c08d7d6 | 2015-07-16 21:05:11 -0700 | [diff] [blame] | 51 | if (size < MIN_RSA_KEY_SIZE) |
| 52 | BOOST_THROW_EXCEPTION(KeyParams::Error("Unsupported key size")); |
| 53 | return size; |
Yingdi Yu | 7036ce2 | 2014-06-19 18:53:37 -0700 | [diff] [blame] | 54 | } |
| 55 | |
| 56 | uint32_t |
| 57 | RsaKeyParamsInfo::getDefaultSize() |
| 58 | { |
Yingdi Yu | c08d7d6 | 2015-07-16 21:05:11 -0700 | [diff] [blame] | 59 | return DEFAULT_RSA_KEY_SIZE; |
Yingdi Yu | 7036ce2 | 2014-06-19 18:53:37 -0700 | [diff] [blame] | 60 | } |
| 61 | |
| 62 | uint32_t |
Spyridon Mastorakis | 1ece2e3 | 2015-08-27 18:52:21 -0700 | [diff] [blame] | 63 | EcKeyParamsInfo::checkKeySize(uint32_t size) |
Yingdi Yu | 7036ce2 | 2014-06-19 18:53:37 -0700 | [diff] [blame] | 64 | { |
Spyridon Mastorakis | 1ece2e3 | 2015-08-27 18:52:21 -0700 | [diff] [blame] | 65 | for (size_t i = 0; i < (sizeof(EC_KEY_SIZES) / sizeof(EC_KEY_SIZES[0])); i++) { |
| 66 | if (EC_KEY_SIZES[i] == size) |
Yingdi Yu | c08d7d6 | 2015-07-16 21:05:11 -0700 | [diff] [blame] | 67 | return size; |
| 68 | } |
| 69 | BOOST_THROW_EXCEPTION(KeyParams::Error("Unsupported key size")); |
Yingdi Yu | 7036ce2 | 2014-06-19 18:53:37 -0700 | [diff] [blame] | 70 | } |
| 71 | |
| 72 | uint32_t |
Spyridon Mastorakis | 1ece2e3 | 2015-08-27 18:52:21 -0700 | [diff] [blame] | 73 | EcKeyParamsInfo::getDefaultSize() |
Yingdi Yu | 7036ce2 | 2014-06-19 18:53:37 -0700 | [diff] [blame] | 74 | { |
Spyridon Mastorakis | 1ece2e3 | 2015-08-27 18:52:21 -0700 | [diff] [blame] | 75 | return EC_KEY_SIZES[0]; |
Yingdi Yu | 7036ce2 | 2014-06-19 18:53:37 -0700 | [diff] [blame] | 76 | } |
| 77 | |
| 78 | |
| 79 | uint32_t |
| 80 | AesKeyParamsInfo::checkKeySize(uint32_t size) |
| 81 | { |
Yingdi Yu | c08d7d6 | 2015-07-16 21:05:11 -0700 | [diff] [blame] | 82 | for (size_t i = 0; i < (sizeof(AES_KEY_SIZES) / sizeof(AES_KEY_SIZES[0])); i++) { |
| 83 | if (AES_KEY_SIZES[i] == size) |
| 84 | return size; |
| 85 | } |
| 86 | BOOST_THROW_EXCEPTION(KeyParams::Error("Unsupported key size")); |
Yingdi Yu | 7036ce2 | 2014-06-19 18:53:37 -0700 | [diff] [blame] | 87 | } |
| 88 | |
| 89 | uint32_t |
| 90 | AesKeyParamsInfo::getDefaultSize() |
| 91 | { |
| 92 | return AES_KEY_SIZES[0]; |
| 93 | } |
| 94 | |
| 95 | } // namespace ndn |