blob: b5c9e5eae93dbb8f66f4f88b5b091a21a1cb32ec [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/*
Davide Pesaventoe80d1162018-09-08 19:23:09 -04003 * Copyright (c) 2013-2018 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) {
Davide Pesaventodef60f12017-09-17 17:26:07 -040032 case DigestAlgorithm::SHA224:
33 return EVP_sha224();
Yingdi Yu99b2a002015-08-12 12:47:44 -070034 case DigestAlgorithm::SHA256:
Yingdi Yuae734272015-07-04 17:38:48 -070035 return EVP_sha256();
Davide Pesaventodef60f12017-09-17 17:26:07 -040036 case DigestAlgorithm::SHA384:
37 return EVP_sha384();
38 case DigestAlgorithm::SHA512:
39 return EVP_sha512();
Davide Pesavento720f3ba2017-12-29 22:06:29 -050040#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
Davide Pesaventoe80d1162018-09-08 19:23:09 -040046#if OPENSSL_VERSION_NUMBER >= 0x10101001L
47 case DigestAlgorithm::SHA3_224:
48 return EVP_sha3_224();
49 case DigestAlgorithm::SHA3_256:
50 return EVP_sha3_256();
51 case DigestAlgorithm::SHA3_384:
52 return EVP_sha3_384();
53 case DigestAlgorithm::SHA3_512:
54 return EVP_sha3_512();
55#endif
Yingdi Yuae734272015-07-04 17:38:48 -070056 default:
57 return nullptr;
58 }
59}
60
Davide Pesaventoc21979d2017-09-16 14:52:17 -040061int
62getEvpPkeyType(EVP_PKEY* key)
63{
64 return
65#if OPENSSL_VERSION_NUMBER < 0x1010000fL
66 EVP_PKEY_type(key->type);
67#else
68 EVP_PKEY_base_id(key);
Davide Pesavento720f3ba2017-12-29 22:06:29 -050069#endif
Davide Pesaventoc21979d2017-09-16 14:52:17 -040070}
71
Davide Pesavento3504cc42017-09-17 15:28:10 -040072EvpMdCtx::EvpMdCtx()
73#if OPENSSL_VERSION_NUMBER < 0x1010000fL
74 : m_ctx(EVP_MD_CTX_create())
75#else
76 : m_ctx(EVP_MD_CTX_new())
77#endif
78{
79 if (m_ctx == nullptr)
80 BOOST_THROW_EXCEPTION(std::runtime_error("EVP_MD_CTX creation failed"));
81}
82
83EvpMdCtx::~EvpMdCtx()
84{
85#if OPENSSL_VERSION_NUMBER < 0x1010000fL
86 EVP_MD_CTX_destroy(m_ctx);
87#else
88 EVP_MD_CTX_free(m_ctx);
89#endif
90}
91
Yingdi Yu202a2e92015-07-12 16:49:25 -070092EvpPkeyCtx::EvpPkeyCtx(EVP_PKEY* key)
93 : m_ctx(EVP_PKEY_CTX_new(key, nullptr))
94{
Davide Pesaventof45fa212017-09-14 17:23:56 -040095 if (m_ctx == nullptr)
96 BOOST_THROW_EXCEPTION(std::runtime_error("EVP_PKEY_CTX creation failed"));
Yingdi Yu202a2e92015-07-12 16:49:25 -070097}
98
99EvpPkeyCtx::EvpPkeyCtx(int id)
100 : m_ctx(EVP_PKEY_CTX_new_id(id, nullptr))
101{
Davide Pesaventof45fa212017-09-14 17:23:56 -0400102 if (m_ctx == nullptr)
103 BOOST_THROW_EXCEPTION(std::runtime_error("EVP_PKEY_CTX creation failed"));
Yingdi Yu202a2e92015-07-12 16:49:25 -0700104}
105
106EvpPkeyCtx::~EvpPkeyCtx()
107{
108 EVP_PKEY_CTX_free(m_ctx);
109}
110
Davide Pesaventof45fa212017-09-14 17:23:56 -0400111Bio::Bio(Bio::MethodPtr method)
Yingdi Yu202a2e92015-07-12 16:49:25 -0700112 : m_bio(BIO_new(method))
113{
Davide Pesaventof45fa212017-09-14 17:23:56 -0400114 if (m_bio == nullptr)
115 BOOST_THROW_EXCEPTION(std::runtime_error("BIO creation failed"));
Yingdi Yu202a2e92015-07-12 16:49:25 -0700116}
117
118Bio::~Bio()
119{
120 BIO_free_all(m_bio);
121}
122
Davide Pesaventof45fa212017-09-14 17:23:56 -0400123bool
124Bio::read(uint8_t* buf, size_t buflen) const noexcept
125{
126 BOOST_ASSERT(buflen <= std::numeric_limits<int>::max());
127 int n = BIO_read(m_bio, buf, static_cast<int>(buflen));
128 return n >= 0 && static_cast<size_t>(n) == buflen;
129}
130
131bool
132Bio::write(const uint8_t* buf, size_t buflen) noexcept
133{
134 BOOST_ASSERT(buflen <= std::numeric_limits<int>::max());
135 int n = BIO_write(m_bio, buf, static_cast<int>(buflen));
136 return n >= 0 && static_cast<size_t>(n) == buflen;
137}
138
Yingdi Yuae734272015-07-04 17:38:48 -0700139} // namespace detail
140} // namespace security
141} // namespace ndn