NS-3 based Named Data Networking (NDN) simulator
ndnSIM 2.5: NDN, CCN, CCNx, content centric networks
API Documentation
openssl-helper.cpp
Go to the documentation of this file.
1 /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2 /*
3  * Copyright (c) 2013-2019 Regents of the University of California.
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 
23 
24 namespace ndn {
25 namespace security {
26 namespace detail {
27 
28 const EVP_MD*
30 {
31  switch (algo) {
33  return EVP_sha224();
35  return EVP_sha256();
37  return EVP_sha384();
39  return EVP_sha512();
40 #if OPENSSL_VERSION_NUMBER >= 0x1010000fL && !defined(OPENSSL_NO_BLAKE2)
42  return EVP_blake2b512();
44  return EVP_blake2s256();
45 #endif
46 #if OPENSSL_VERSION_NUMBER >= 0x10101001L
48  return EVP_sha3_224();
50  return EVP_sha3_256();
52  return EVP_sha3_384();
54  return EVP_sha3_512();
55 #endif
56  default:
57  return nullptr;
58  }
59 }
60 
61 int
62 getEvpPkeyType(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);
69 #endif
70 }
71 
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  NDN_THROW(std::runtime_error("EVP_MD_CTX creation failed"));
81 }
82 
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 
92 EvpPkeyCtx::EvpPkeyCtx(EVP_PKEY* key)
93  : m_ctx(EVP_PKEY_CTX_new(key, nullptr))
94 {
95  if (m_ctx == nullptr)
96  NDN_THROW(std::runtime_error("EVP_PKEY_CTX creation failed"));
97 }
98 
100  : m_ctx(EVP_PKEY_CTX_new_id(id, nullptr))
101 {
102  if (m_ctx == nullptr)
103  NDN_THROW(std::runtime_error("EVP_PKEY_CTX creation failed"));
104 }
105 
107 {
108  EVP_PKEY_CTX_free(m_ctx);
109 }
110 
112  : m_bio(BIO_new(method))
113 {
114  if (m_bio == nullptr)
115  NDN_THROW(std::runtime_error("BIO creation failed"));
116 }
117 
119 {
120  BIO_free_all(m_bio);
121 }
122 
123 bool
124 Bio::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 
131 bool
132 Bio::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 
139 } // namespace detail
140 } // namespace security
141 } // namespace ndn
buf
const uint8_t * buf
Definition: verification-helpers.cpp:47
ndn::DigestAlgorithm::SHA224
@ SHA224
ndn::DigestAlgorithm::SHA256
@ SHA256
ndn::security::detail::Bio::MethodPtr
BIO_METHOD * MethodPtr
Definition: openssl-helper.hpp:78
ndn::security::detail::Bio::write
NDN_CXX_NODISCARD bool write(const uint8_t *buf, size_t buflen) noexcept
Definition: openssl-helper.cpp:132
ndn::DigestAlgorithm
DigestAlgorithm
Definition: security-common.hpp:96
ndn::DigestAlgorithm::SHA3_384
@ SHA3_384
ndn::security::detail::EvpPkeyCtx::~EvpPkeyCtx
~EvpPkeyCtx()
Definition: openssl-helper.cpp:106
ndn::security::detail::digestAlgorithmToEvpMd
const EVP_MD * digestAlgorithmToEvpMd(DigestAlgorithm algo)
Definition: openssl-helper.cpp:29
ndn::security::detail::getEvpPkeyType
int getEvpPkeyType(EVP_PKEY *key)
Definition: openssl-helper.cpp:62
NDN_THROW
#define NDN_THROW(e)
Definition: exception.hpp:61
ndn::DigestAlgorithm::SHA512
@ SHA512
openssl-helper.hpp
ndn::DigestAlgorithm::SHA3_256
@ SHA3_256
ndn::security::detail::EvpPkeyCtx::EvpPkeyCtx
EvpPkeyCtx(EVP_PKEY *key)
Definition: openssl-helper.cpp:92
ndn::security::detail::Bio::Bio
Bio(MethodPtr method)
Definition: openssl-helper.cpp:111
ndn::DigestAlgorithm::BLAKE2S_256
@ BLAKE2S_256
ndn::DigestAlgorithm::SHA3_512
@ SHA3_512
ndn::DigestAlgorithm::BLAKE2B_512
@ BLAKE2B_512
ndn::security::detail::EvpMdCtx::~EvpMdCtx
~EvpMdCtx()
Definition: openssl-helper.cpp:83
ndn::DigestAlgorithm::SHA3_224
@ SHA3_224
ndn::DigestAlgorithm::SHA384
@ SHA384
ndn::security::detail::Bio::~Bio
~Bio()
Definition: openssl-helper.cpp:118
ndn::security::detail::EvpMdCtx::EvpMdCtx
EvpMdCtx()
Definition: openssl-helper.cpp:72
ndn::security::detail::Bio::read
NDN_CXX_NODISCARD bool read(uint8_t *buf, size_t buflen) const noexcept
Definition: openssl-helper.cpp:124
ndn
Copyright (c) 2011-2015 Regents of the University of California.
Definition: ndn-strategy-choice-helper.hpp:34