blob: 865bc3609257ac57da1c46dbc8344827b3a4dc37 [file] [log] [blame]
Yingdi Yuae734272015-07-04 17:38:48 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Davide Pesaventof45fa212017-09-14 17:23:56 -04002/*
3 * Copyright (c) 2013-2017 Regents of the University of California.
Yingdi Yuae734272015-07-04 17:38:48 -07004 *
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
24namespace ndn {
25namespace security {
26namespace detail {
27
28const EVP_MD*
Davide Pesavento87039532017-09-16 15:15:39 -040029digestAlgorithmToEvpMd(DigestAlgorithm algo)
Yingdi Yuae734272015-07-04 17:38:48 -070030{
31 switch (algo) {
Yingdi Yu99b2a002015-08-12 12:47:44 -070032 case DigestAlgorithm::SHA256:
Yingdi Yuae734272015-07-04 17:38:48 -070033 return EVP_sha256();
34 default:
35 return nullptr;
36 }
37}
38
Davide Pesaventoc21979d2017-09-16 14:52:17 -040039int
40getEvpPkeyType(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
Davide Pesavento3504cc42017-09-17 15:28:10 -040050EvpMdCtx::EvpMdCtx()
51#if OPENSSL_VERSION_NUMBER < 0x1010000fL
52 : m_ctx(EVP_MD_CTX_create())
53#else
54 : m_ctx(EVP_MD_CTX_new())
55#endif
56{
57 if (m_ctx == nullptr)
58 BOOST_THROW_EXCEPTION(std::runtime_error("EVP_MD_CTX creation failed"));
59}
60
61EvpMdCtx::~EvpMdCtx()
62{
63#if OPENSSL_VERSION_NUMBER < 0x1010000fL
64 EVP_MD_CTX_destroy(m_ctx);
65#else
66 EVP_MD_CTX_free(m_ctx);
67#endif
68}
69
Yingdi Yu202a2e92015-07-12 16:49:25 -070070EvpPkeyCtx::EvpPkeyCtx(EVP_PKEY* key)
71 : m_ctx(EVP_PKEY_CTX_new(key, nullptr))
72{
Davide Pesaventof45fa212017-09-14 17:23:56 -040073 if (m_ctx == nullptr)
74 BOOST_THROW_EXCEPTION(std::runtime_error("EVP_PKEY_CTX creation failed"));
Yingdi Yu202a2e92015-07-12 16:49:25 -070075}
76
77EvpPkeyCtx::EvpPkeyCtx(int id)
78 : m_ctx(EVP_PKEY_CTX_new_id(id, nullptr))
79{
Davide Pesaventof45fa212017-09-14 17:23:56 -040080 if (m_ctx == nullptr)
81 BOOST_THROW_EXCEPTION(std::runtime_error("EVP_PKEY_CTX creation failed"));
Yingdi Yu202a2e92015-07-12 16:49:25 -070082}
83
84EvpPkeyCtx::~EvpPkeyCtx()
85{
86 EVP_PKEY_CTX_free(m_ctx);
87}
88
Davide Pesaventof45fa212017-09-14 17:23:56 -040089Bio::Bio(Bio::MethodPtr method)
Yingdi Yu202a2e92015-07-12 16:49:25 -070090 : m_bio(BIO_new(method))
91{
Davide Pesaventof45fa212017-09-14 17:23:56 -040092 if (m_bio == nullptr)
93 BOOST_THROW_EXCEPTION(std::runtime_error("BIO creation failed"));
Yingdi Yu202a2e92015-07-12 16:49:25 -070094}
95
96Bio::~Bio()
97{
98 BIO_free_all(m_bio);
99}
100
Davide Pesaventof45fa212017-09-14 17:23:56 -0400101bool
102Bio::read(uint8_t* buf, size_t buflen) const noexcept
103{
104 BOOST_ASSERT(buflen <= std::numeric_limits<int>::max());
105 int n = BIO_read(m_bio, buf, static_cast<int>(buflen));
106 return n >= 0 && static_cast<size_t>(n) == buflen;
107}
108
109bool
110Bio::write(const uint8_t* buf, size_t buflen) noexcept
111{
112 BOOST_ASSERT(buflen <= std::numeric_limits<int>::max());
113 int n = BIO_write(m_bio, buf, static_cast<int>(buflen));
114 return n >= 0 && static_cast<size_t>(n) == buflen;
115}
116
Yingdi Yuae734272015-07-04 17:38:48 -0700117} // namespace detail
118} // namespace security
119} // namespace ndn