Yingdi Yu | ae73427 | 2015-07-04 17:38:48 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
Davide Pesavento | f45fa21 | 2017-09-14 17:23:56 -0400 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (c) 2013-2017 Regents of the University of California. |
Yingdi Yu | ae73427 | 2015-07-04 17:38:48 -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 "openssl-helper.hpp" |
| 23 | |
| 24 | namespace ndn { |
| 25 | namespace security { |
| 26 | namespace detail { |
| 27 | |
| 28 | const EVP_MD* |
Davide Pesavento | 8703953 | 2017-09-16 15:15:39 -0400 | [diff] [blame] | 29 | digestAlgorithmToEvpMd(DigestAlgorithm algo) |
Yingdi Yu | ae73427 | 2015-07-04 17:38:48 -0700 | [diff] [blame] | 30 | { |
| 31 | switch (algo) { |
Davide Pesavento | def60f1 | 2017-09-17 17:26:07 -0400 | [diff] [blame] | 32 | case DigestAlgorithm::SHA224: |
| 33 | return EVP_sha224(); |
Yingdi Yu | 99b2a00 | 2015-08-12 12:47:44 -0700 | [diff] [blame] | 34 | case DigestAlgorithm::SHA256: |
Yingdi Yu | ae73427 | 2015-07-04 17:38:48 -0700 | [diff] [blame] | 35 | return EVP_sha256(); |
Davide Pesavento | def60f1 | 2017-09-17 17:26:07 -0400 | [diff] [blame] | 36 | case DigestAlgorithm::SHA384: |
| 37 | return EVP_sha384(); |
| 38 | case DigestAlgorithm::SHA512: |
| 39 | return EVP_sha512(); |
Davide Pesavento | 720f3ba | 2017-12-29 22:06:29 -0500 | [diff] [blame^] | 40 | #if OPENSSL_VERSION_NUMBER >= 0x1010000fL && !defined(OPENSSL_NO_BLAKE2) |
| 41 | case DigestAlgorithm::BLAKE2B_512: |
| 42 | return EVP_blake2b512(); |
| 43 | case DigestAlgorithm::BLAKE2S_256: |
| 44 | return EVP_blake2s256(); |
| 45 | #endif |
Yingdi Yu | ae73427 | 2015-07-04 17:38:48 -0700 | [diff] [blame] | 46 | default: |
| 47 | return nullptr; |
| 48 | } |
| 49 | } |
| 50 | |
Davide Pesavento | c21979d | 2017-09-16 14:52:17 -0400 | [diff] [blame] | 51 | int |
| 52 | getEvpPkeyType(EVP_PKEY* key) |
| 53 | { |
| 54 | return |
| 55 | #if OPENSSL_VERSION_NUMBER < 0x1010000fL |
| 56 | EVP_PKEY_type(key->type); |
| 57 | #else |
| 58 | EVP_PKEY_base_id(key); |
Davide Pesavento | 720f3ba | 2017-12-29 22:06:29 -0500 | [diff] [blame^] | 59 | #endif |
Davide Pesavento | c21979d | 2017-09-16 14:52:17 -0400 | [diff] [blame] | 60 | } |
| 61 | |
Davide Pesavento | 3504cc4 | 2017-09-17 15:28:10 -0400 | [diff] [blame] | 62 | EvpMdCtx::EvpMdCtx() |
| 63 | #if OPENSSL_VERSION_NUMBER < 0x1010000fL |
| 64 | : m_ctx(EVP_MD_CTX_create()) |
| 65 | #else |
| 66 | : m_ctx(EVP_MD_CTX_new()) |
| 67 | #endif |
| 68 | { |
| 69 | if (m_ctx == nullptr) |
| 70 | BOOST_THROW_EXCEPTION(std::runtime_error("EVP_MD_CTX creation failed")); |
| 71 | } |
| 72 | |
| 73 | EvpMdCtx::~EvpMdCtx() |
| 74 | { |
| 75 | #if OPENSSL_VERSION_NUMBER < 0x1010000fL |
| 76 | EVP_MD_CTX_destroy(m_ctx); |
| 77 | #else |
| 78 | EVP_MD_CTX_free(m_ctx); |
| 79 | #endif |
| 80 | } |
| 81 | |
Yingdi Yu | 202a2e9 | 2015-07-12 16:49:25 -0700 | [diff] [blame] | 82 | EvpPkeyCtx::EvpPkeyCtx(EVP_PKEY* key) |
| 83 | : m_ctx(EVP_PKEY_CTX_new(key, nullptr)) |
| 84 | { |
Davide Pesavento | f45fa21 | 2017-09-14 17:23:56 -0400 | [diff] [blame] | 85 | if (m_ctx == nullptr) |
| 86 | BOOST_THROW_EXCEPTION(std::runtime_error("EVP_PKEY_CTX creation failed")); |
Yingdi Yu | 202a2e9 | 2015-07-12 16:49:25 -0700 | [diff] [blame] | 87 | } |
| 88 | |
| 89 | EvpPkeyCtx::EvpPkeyCtx(int id) |
| 90 | : m_ctx(EVP_PKEY_CTX_new_id(id, nullptr)) |
| 91 | { |
Davide Pesavento | f45fa21 | 2017-09-14 17:23:56 -0400 | [diff] [blame] | 92 | if (m_ctx == nullptr) |
| 93 | BOOST_THROW_EXCEPTION(std::runtime_error("EVP_PKEY_CTX creation failed")); |
Yingdi Yu | 202a2e9 | 2015-07-12 16:49:25 -0700 | [diff] [blame] | 94 | } |
| 95 | |
| 96 | EvpPkeyCtx::~EvpPkeyCtx() |
| 97 | { |
| 98 | EVP_PKEY_CTX_free(m_ctx); |
| 99 | } |
| 100 | |
Davide Pesavento | f45fa21 | 2017-09-14 17:23:56 -0400 | [diff] [blame] | 101 | Bio::Bio(Bio::MethodPtr method) |
Yingdi Yu | 202a2e9 | 2015-07-12 16:49:25 -0700 | [diff] [blame] | 102 | : m_bio(BIO_new(method)) |
| 103 | { |
Davide Pesavento | f45fa21 | 2017-09-14 17:23:56 -0400 | [diff] [blame] | 104 | if (m_bio == nullptr) |
| 105 | BOOST_THROW_EXCEPTION(std::runtime_error("BIO creation failed")); |
Yingdi Yu | 202a2e9 | 2015-07-12 16:49:25 -0700 | [diff] [blame] | 106 | } |
| 107 | |
| 108 | Bio::~Bio() |
| 109 | { |
| 110 | BIO_free_all(m_bio); |
| 111 | } |
| 112 | |
Davide Pesavento | f45fa21 | 2017-09-14 17:23:56 -0400 | [diff] [blame] | 113 | bool |
| 114 | Bio::read(uint8_t* buf, size_t buflen) const noexcept |
| 115 | { |
| 116 | BOOST_ASSERT(buflen <= std::numeric_limits<int>::max()); |
| 117 | int n = BIO_read(m_bio, buf, static_cast<int>(buflen)); |
| 118 | return n >= 0 && static_cast<size_t>(n) == buflen; |
| 119 | } |
| 120 | |
| 121 | bool |
| 122 | Bio::write(const uint8_t* buf, size_t buflen) noexcept |
| 123 | { |
| 124 | BOOST_ASSERT(buflen <= std::numeric_limits<int>::max()); |
| 125 | int n = BIO_write(m_bio, buf, static_cast<int>(buflen)); |
| 126 | return n >= 0 && static_cast<size_t>(n) == buflen; |
| 127 | } |
| 128 | |
Yingdi Yu | ae73427 | 2015-07-04 17:38:48 -0700 | [diff] [blame] | 129 | } // namespace detail |
| 130 | } // namespace security |
| 131 | } // namespace ndn |