Disk ARchive 2.7.16
Full featured and portable backup and archiving tool
crypto_asym.hpp
Go to the documentation of this file.
1//*********************************************************************/
2// dar - disk archive - a backup/restoration program
3// Copyright (C) 2002-2024 Denis Corbin
4//
5// This program is free software; you can redistribute it and/or
6// modify it under the terms of the GNU General Public License
7// as published by the Free Software Foundation; either version 2
8// of the License, or (at your option) any later version.
9//
10// This program is distributed in the hope that it will be useful,
11// but WITHOUT ANY WARRANTY; without even the implied warranty of
12// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13// GNU General Public License for more details.
14//
15// You should have received a copy of the GNU General Public License
16// along with this program; if not, write to the Free Software
17// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18//
19// to contact the author, see the AUTHOR file
20/*********************************************************************/
21
25
26#ifndef CRYPTO_ASYM_HPP
27#define CRYPTO_ASYM_HPP
28
29extern "C"
30{
31#if HAVE_GPGME_H
32#include <gpgme.h>
33#endif
34}
35
36#include "../my_config.h"
37#include "generic_file.hpp"
38#include "mem_ui.hpp"
39#include "crypto.hpp"
40
41#include <list>
42
43namespace libdar
44{
47
49
50 class crypto_asym : public mem_ui
51 {
52 public:
53
55 crypto_asym(const std::shared_ptr<user_interaction> & ui) : mem_ui(ui) { build_context(); has_signatories = false; };
56
58 crypto_asym(const crypto_asym & ref) = delete;
59
61 crypto_asym(crypto_asym && ref) = delete;
62
64 crypto_asym & operator = (const crypto_asym & ref) = delete;
65
68
70 ~crypto_asym() { release_context(); };
71
72
74 void set_signatories(const std::vector<std::string> & signatories);
75
77
82 void encrypt(const std::vector<std::string> & recipients_email, generic_file & clear, generic_file & ciphered);
83
85
89 void decrypt(generic_file & ciphered, generic_file & clear);
90
93 const std::list<signator> & verify() const { return signing_result; };
94
96
99 user_interaction & get_ui() const { return mem_ui::get_ui(); };
100
101 private:
102 bool has_signatories;
103 std::list<signator> signing_result;
104#if GPGME_SUPPORT
105 gpgme_ctx_t context;
106
107 void release_context() { gpgme_release(context); };
108 void build_key_list(const std::vector<std::string> & recipients_email,
109 gpgme_key_t * & ciphering_keys,
110 bool signatories
111 );
112 void release_key_list(gpgme_key_t * & ciphering_keys);
113 void fill_signing_result();
114#else
115 void release_context() {};
116#endif
117
118 void build_context();
119 };
120
122
123} // end of namespace
124
125#endif
asymetric ciphering
Definition: crypto_asym.hpp:51
void set_signatories(const std::vector< std::string > &signatories)
defines the list of email or keyid which associated key will be used for signing
crypto_asym(const crypto_asym &ref)=delete
disabling copy constructor
crypto_asym(crypto_asym &&ref)=delete
disabling move constuctor
user_interaction & get_ui() const
exposing to public visibility the protected method of mem_ui
Definition: crypto_asym.hpp:99
const std::list< signator > & verify() const
Definition: crypto_asym.hpp:93
void decrypt(generic_file &ciphered, generic_file &clear)
un-cipher data
crypto_asym(const std::shared_ptr< user_interaction > &ui)
general use constructor
Definition: crypto_asym.hpp:55
void encrypt(const std::vector< std::string > &recipients_email, generic_file &clear, generic_file &ciphered)
encrypt (and sign if signatures have been given using set_signatories) data for the given recipients
crypto_asym & operator=(const crypto_asym &ref)=delete
disabling object assignment
~crypto_asym()
the destructor
Definition: crypto_asym.hpp:70
this is the interface class from which all other data transfer classes inherit
class mem_ui to keep a copy of a user_interaction object
Definition: mem_ui.hpp:55
user_interaction & get_ui() const
get access to the user_interaction object
Definition: mem_ui.hpp:94
This is a pure virtual class that is used by libdar when interaction with the user is required.
the crypto algoritm definition
class generic_file is defined here as well as class fichier
class mem_ui definition. This class is to be used as parent class to handle user_interaction object m...
libdar namespace encapsulate all libdar symbols
Definition: archive.hpp:47