blob: 12d1106526583a120c0af22464571ea2d50c0839 [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*
29toDigestEvpMd(DigestAlgorithm algo)
30{
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
Yingdi Yu202a2e92015-07-12 16:49:25 -070039EvpPkeyCtx::EvpPkeyCtx(EVP_PKEY* key)
40 : m_ctx(EVP_PKEY_CTX_new(key, nullptr))
41{
Davide Pesaventof45fa212017-09-14 17:23:56 -040042 if (m_ctx == nullptr)
43 BOOST_THROW_EXCEPTION(std::runtime_error("EVP_PKEY_CTX creation failed"));
Yingdi Yu202a2e92015-07-12 16:49:25 -070044}
45
46EvpPkeyCtx::EvpPkeyCtx(int id)
47 : m_ctx(EVP_PKEY_CTX_new_id(id, nullptr))
48{
Davide Pesaventof45fa212017-09-14 17:23:56 -040049 if (m_ctx == nullptr)
50 BOOST_THROW_EXCEPTION(std::runtime_error("EVP_PKEY_CTX creation failed"));
Yingdi Yu202a2e92015-07-12 16:49:25 -070051}
52
53EvpPkeyCtx::~EvpPkeyCtx()
54{
55 EVP_PKEY_CTX_free(m_ctx);
56}
57
Davide Pesaventof45fa212017-09-14 17:23:56 -040058Bio::Bio(Bio::MethodPtr method)
Yingdi Yu202a2e92015-07-12 16:49:25 -070059 : m_bio(BIO_new(method))
60{
Davide Pesaventof45fa212017-09-14 17:23:56 -040061 if (m_bio == nullptr)
62 BOOST_THROW_EXCEPTION(std::runtime_error("BIO creation failed"));
Yingdi Yu202a2e92015-07-12 16:49:25 -070063}
64
65Bio::~Bio()
66{
67 BIO_free_all(m_bio);
68}
69
Davide Pesaventof45fa212017-09-14 17:23:56 -040070bool
71Bio::read(uint8_t* buf, size_t buflen) const noexcept
72{
73 BOOST_ASSERT(buflen <= std::numeric_limits<int>::max());
74 int n = BIO_read(m_bio, buf, static_cast<int>(buflen));
75 return n >= 0 && static_cast<size_t>(n) == buflen;
76}
77
78bool
79Bio::write(const uint8_t* buf, size_t buflen) noexcept
80{
81 BOOST_ASSERT(buflen <= std::numeric_limits<int>::max());
82 int n = BIO_write(m_bio, buf, static_cast<int>(buflen));
83 return n >= 0 && static_cast<size_t>(n) == buflen;
84}
85
Yingdi Yuae734272015-07-04 17:38:48 -070086} // namespace detail
87} // namespace security
88} // namespace ndn