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* |
| 29 | toDigestEvpMd(DigestAlgorithm algo) |
| 30 | { |
| 31 | switch (algo) { |
Yingdi Yu | 99b2a00 | 2015-08-12 12:47:44 -0700 | [diff] [blame] | 32 | case DigestAlgorithm::SHA256: |
Yingdi Yu | ae73427 | 2015-07-04 17:38:48 -0700 | [diff] [blame] | 33 | return EVP_sha256(); |
| 34 | default: |
| 35 | return nullptr; |
| 36 | } |
| 37 | } |
| 38 | |
Davide Pesavento | c21979d | 2017-09-16 14:52:17 -0400 | [diff] [blame^] | 39 | int |
| 40 | getEvpPkeyType(EVP_PKEY* key) |
| 41 | { |
| 42 | return |
| 43 | #if OPENSSL_VERSION_NUMBER < 0x1010000fL |
| 44 | EVP_PKEY_type(key->type); |
| 45 | #else |
| 46 | EVP_PKEY_base_id(key); |
| 47 | #endif // OPENSSL_VERSION_NUMBER < 0x1010000fL |
| 48 | } |
| 49 | |
Yingdi Yu | 202a2e9 | 2015-07-12 16:49:25 -0700 | [diff] [blame] | 50 | EvpPkeyCtx::EvpPkeyCtx(EVP_PKEY* key) |
| 51 | : m_ctx(EVP_PKEY_CTX_new(key, nullptr)) |
| 52 | { |
Davide Pesavento | f45fa21 | 2017-09-14 17:23:56 -0400 | [diff] [blame] | 53 | if (m_ctx == nullptr) |
| 54 | BOOST_THROW_EXCEPTION(std::runtime_error("EVP_PKEY_CTX creation failed")); |
Yingdi Yu | 202a2e9 | 2015-07-12 16:49:25 -0700 | [diff] [blame] | 55 | } |
| 56 | |
| 57 | EvpPkeyCtx::EvpPkeyCtx(int id) |
| 58 | : m_ctx(EVP_PKEY_CTX_new_id(id, nullptr)) |
| 59 | { |
Davide Pesavento | f45fa21 | 2017-09-14 17:23:56 -0400 | [diff] [blame] | 60 | if (m_ctx == nullptr) |
| 61 | BOOST_THROW_EXCEPTION(std::runtime_error("EVP_PKEY_CTX creation failed")); |
Yingdi Yu | 202a2e9 | 2015-07-12 16:49:25 -0700 | [diff] [blame] | 62 | } |
| 63 | |
| 64 | EvpPkeyCtx::~EvpPkeyCtx() |
| 65 | { |
| 66 | EVP_PKEY_CTX_free(m_ctx); |
| 67 | } |
| 68 | |
Davide Pesavento | f45fa21 | 2017-09-14 17:23:56 -0400 | [diff] [blame] | 69 | Bio::Bio(Bio::MethodPtr method) |
Yingdi Yu | 202a2e9 | 2015-07-12 16:49:25 -0700 | [diff] [blame] | 70 | : m_bio(BIO_new(method)) |
| 71 | { |
Davide Pesavento | f45fa21 | 2017-09-14 17:23:56 -0400 | [diff] [blame] | 72 | if (m_bio == nullptr) |
| 73 | BOOST_THROW_EXCEPTION(std::runtime_error("BIO creation failed")); |
Yingdi Yu | 202a2e9 | 2015-07-12 16:49:25 -0700 | [diff] [blame] | 74 | } |
| 75 | |
| 76 | Bio::~Bio() |
| 77 | { |
| 78 | BIO_free_all(m_bio); |
| 79 | } |
| 80 | |
Davide Pesavento | f45fa21 | 2017-09-14 17:23:56 -0400 | [diff] [blame] | 81 | bool |
| 82 | Bio::read(uint8_t* buf, size_t buflen) const noexcept |
| 83 | { |
| 84 | BOOST_ASSERT(buflen <= std::numeric_limits<int>::max()); |
| 85 | int n = BIO_read(m_bio, buf, static_cast<int>(buflen)); |
| 86 | return n >= 0 && static_cast<size_t>(n) == buflen; |
| 87 | } |
| 88 | |
| 89 | bool |
| 90 | Bio::write(const uint8_t* buf, size_t buflen) noexcept |
| 91 | { |
| 92 | BOOST_ASSERT(buflen <= std::numeric_limits<int>::max()); |
| 93 | int n = BIO_write(m_bio, buf, static_cast<int>(buflen)); |
| 94 | return n >= 0 && static_cast<size_t>(n) == buflen; |
| 95 | } |
| 96 | |
Yingdi Yu | ae73427 | 2015-07-04 17:38:48 -0700 | [diff] [blame] | 97 | } // namespace detail |
| 98 | } // namespace security |
| 99 | } // namespace ndn |