blob: fda45f18f3aa85d5fee189dc8aeb5d7b5ce92d24 [file] [log] [blame]
Yingdi Yub263f152015-07-12 16:50:13 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Davide Pesavento06f1bdf2017-09-16 18:59:15 -04002/*
Davide Pesavento794f6872017-05-15 23:33:38 -04003 * Copyright (c) 2013-2017 Regents of the University of California.
Yingdi Yub263f152015-07-12 16:50:13 -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#ifndef NDN_CXX_SECURITY_TRANSFORM_SIGNER_FILTER_HPP
23#define NDN_CXX_SECURITY_TRANSFORM_SIGNER_FILTER_HPP
24
25#include "transform-base.hpp"
Yingdi Yub263f152015-07-12 16:50:13 -070026#include "../security-common.hpp"
27
28namespace ndn {
29namespace security {
30namespace transform {
31
Davide Pesavento06f1bdf2017-09-16 18:59:15 -040032class PrivateKey;
33
Yingdi Yub263f152015-07-12 16:50:13 -070034/**
35 * @brief The module to sign data.
36 */
37class SignerFilter : public Transform
38{
39public:
40 /**
Davide Pesavento06f1bdf2017-09-16 18:59:15 -040041 * @brief Create a module to sign using digest algorithm @p algo and private key @p key
Yingdi Yub263f152015-07-12 16:50:13 -070042 */
43 SignerFilter(DigestAlgorithm algo, const PrivateKey& key);
44
Davide Pesavento06f1bdf2017-09-16 18:59:15 -040045 ~SignerFilter();
46
Yingdi Yub263f152015-07-12 16:50:13 -070047private:
48 /**
49 * @brief Write data @p buf into signer
50 *
51 * @return The number of bytes that are actually accepted
52 */
Davide Pesavento57c07df2016-12-11 18:41:45 -050053 size_t
Yingdi Yub263f152015-07-12 16:50:13 -070054 convert(const uint8_t* buf, size_t size) final;
55
56 /**
57 * @brief Finalize signing and write the signature into next module.
58 */
Davide Pesavento57c07df2016-12-11 18:41:45 -050059 void
Yingdi Yub263f152015-07-12 16:50:13 -070060 finalize() final;
61
62private:
63 class Impl;
Davide Pesavento794f6872017-05-15 23:33:38 -040064 const unique_ptr<Impl> m_impl;
Yingdi Yub263f152015-07-12 16:50:13 -070065};
66
67unique_ptr<Transform>
68signerFilter(DigestAlgorithm algo, const PrivateKey& key);
69
70} // namespace transform
71} // namespace security
72} // namespace ndn
73
74#endif // NDN_CXX_SECURITY_TRANSFORM_SIGNER_FILTER_HPP