forked from openSUSE/libzypp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDigest.h
176 lines (151 loc) · 6 KB
/
Digest.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
/*---------------------------------------------------------------------\
| ____ _ __ __ ___ |
| |__ / \ / / . \ . \ |
| / / \ V /| _/ _/ |
| / /__ | | | | | | |
| /_____||_| |_| |_| |
| |
\---------------------------------------------------------------------*/
/** \file zypp-core/Digest.h
*
* \todo replace by Blocxx
*
*/
#ifndef ZYPP_CORE_DIGEST_H
#define ZYPP_CORE_DIGEST_H
#include <string>
#include <iosfwd>
#include <memory>
#include <optional>
#include <zypp-core/Pathname.h>
#include <zypp-core/ByteArray.h>
#include <zypp-core/ByteCount.h>
namespace zypp {
/** \brief Compute Message Digests (MD5, SHA1 etc)
*
* The computation works by initializing the algorithm using create(). This
* will construct an internal state. successive calls to update() deliver the
* data for which the digest is to be computed. After all data has been
* deliverd, a call to digest() finalizes the computation and returns the
* result
* */
class Digest
{
private:
class P;
std::unique_ptr<P> _dp;
// disabled
Digest(const Digest& d) = delete;
// disabled
const Digest& operator=(const Digest& d) = delete;
public:
// moving is fine
Digest(Digest&& other) noexcept;
Digest& operator=( Digest&& other) noexcept;
/** \name Well known digest algorithm names. */
//@{
/** md5 */
static const std::string & md5();
/** sha1 */
static const std::string & sha1();
/** sha224 */
static const std::string & sha224();
/** sha256 */
static const std::string & sha256();
/** sha384 */
static const std::string & sha384();
/** sha512 */
static const std::string & sha512();
//@}
public:
Digest();
~Digest();
/** \brief initialize creation of a new message digest
*
* Since openssl is used as backend you may use anything that openssl
* supports (see man 1 dgst). Common examples are md5 or sha1. sha1
* should be preferred when creating digests to verify the authenticity
* of something.
*
* successive calls to this funcion will destroy the internal state and
* reinit from scratch
*
* @param name name of the message digest algorithm.
* @return whether an error occured
* */
bool create(const std::string& name);
/** \brief get the name of the current digest algorithm */
const std::string& name();
/** \brief feed data into digest computation algorithm
* @param bytes
* @param len
* @return whether an error occured
* */
bool update(const char* bytes, size_t len);
/** \brief feed data into digest computation algorithm
* @param is
* @param bufsize
* @return whether an error occured
* */
bool update(std::istream& is, size_t bufsize = 4096);
/**
* Returns the number of input bytes that have been added to the hash
*/
zypp::ByteCount bytesHashed () const;
/** \brief get hex string representation of the digest
*
* this function will finalize the digest computation. calls to update
* after this function will start from scratch
*
* @return hex string representation of the digest
* */
std::string digest();
/** \brief get hex string representation of the digest vector given as parameter
*
* @return hex string representation of the digest
* */
static std::string digestVectorToString ( const UByteArray &vec );
#ifdef __cpp_lib_string_view
/** \brief convert the hex string representation of the digest vector given as parameter into the actual byte array representation
*
* @return hex string representation of the digest
* */
static ByteArray hexStringToByteArray ( std::string_view str );
static UByteArray hexStringToUByteArray ( std::string_view str );
#endif
/** \brief get vector of unsigned char representation of the digest
*
* this function will finalize the digest computation. calls to update
* after this function will start from scratch
*
* @return vector representation of the digest
* */
UByteArray digestVector();
/** \brief reset internal digest state
*
* this function is equivalent to calling create() with an unchanged name,
* but it may be implemented in a more efficient way.
*/
bool reset();
/**
* Returns a clone of the current Digest and returns it.
* This is the same as manually creating a Digest with the same name ( so no
* checksum calculation state is copied )
*/
Digest clone() const;
/** \brief compute digest of a stream. convenience function
*
* calls create, update and digest in one function. The data for the
* computation is read from the stream
*
* @param name name of the digest algorithm, \see create
* @param is an input stream to get the data from
* @param bufsize size of the buffer used for update(). Be careful, this is on the stack.
* @return the digest or empty on error
* */
static std::string digest(const std::string& name, std::istream& is, size_t bufsize = 4096);
/** \overload Reading input data from \c string. */
static std::string digest( const std::string & name, const std::string & input, size_t bufsize = 4096 );
};
} // namespace zypp
#endif