blob: 52072d2334564c20492574fb4e3ab64ece47fea1 [file] [log] [blame]
Alexander Afanasyev8f25cbb2012-03-01 23:53:40 -08001/* -*- Mode: C++; c-file-style: "gnu"; indent-tabs-mode:nil -*- */
2/*
3 * Copyright (c) 2012 University of California, Los Angeles
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation;
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17 *
18 * Author: Zhenkai Zhu <zhenkai@cs.ucla.edu>
19 * 卞超轶 Chaoyi Bian <bcy@pku.edu.cn>
20 * Alexander Afanasyev <alexander.afanasyev@ucla.edu>
21 */
22
23#ifndef SYNC_DIGEST_H
24#define SYNC_DIGEST_H
25
26#include <boost/exception/all.hpp>
27#include <openssl/evp.h>
28#include <boost/cstdint.hpp>
29
Alexander Afanasyev8f25cbb2012-03-01 23:53:40 -080030namespace Sync {
31
Alexander Afanasyev8f25cbb2012-03-01 23:53:40 -080032/**
33 * @ingroup sync
34 * @brief A simple wrapper for libcrypto hash functions
35 */
36class Digest
37{
38public:
39 /**
40 * @brief Default constructor. Will initialize internal libssl structures
41 */
42 Digest ();
43
44 /**
Alexander Afanasyevb71beab2012-03-05 21:13:49 -080045 * @brief Check if digest is empty
46 */
47 bool
48 empty () const;
49
50 /**
Alexander Afanasyeve00ffbe2012-03-05 00:01:36 -080051 * @brief Reset digest to the initial state
52 */
53 void
54 reset ();
55
56 /**
Alexander Afanasyev8f25cbb2012-03-01 23:53:40 -080057 * @brief Destructor
58 */
59 ~Digest ();
60
Alexander Afanasyev8f25cbb2012-03-01 23:53:40 -080061 /**
62 * @brief Obtain a short version of the hash (just first sizeof(size_t) bytes
63 *
Alexander Afanasyev1fbdcdd2012-03-05 23:14:33 -080064 * Side effect: finalize() will be called on `this'
Alexander Afanasyev8f25cbb2012-03-01 23:53:40 -080065 */
66 std::size_t
67 getHash ();
68
69 /**
Alexander Afanasyev1fbdcdd2012-03-05 23:14:33 -080070 * @brief Finalize digest. All subsequent calls to "operator <<" will fire an exception
71 */
72 void
73 finalize ();
74
75 /**
Alexander Afanasyev8f25cbb2012-03-01 23:53:40 -080076 * @brief Compare two full digests
77 *
78 * Side effect: Finalize will be called on `this' and `digest'
79 */
80 bool
Alexander Afanasyevb71beab2012-03-05 21:13:49 -080081 operator == (const Digest &digest) const;
82
83 bool
84 operator != (const Digest &digest) const
85 { return ! (*this == digest); }
86
Alexander Afanasyev8f25cbb2012-03-01 23:53:40 -080087
Alexander Afanasyevdf718f52012-03-02 00:23:04 -080088 /**
Alexander Afanasyeve00ffbe2012-03-05 00:01:36 -080089 * @brief Add existing digest to digest calculation
Alexander Afanasyevdf718f52012-03-02 00:23:04 -080090 * @param src digest to combine with
91 *
92 * The result of this combination is hash (hash (...))
93 */
94 Digest &
95 operator << (const Digest &src);
96
Alexander Afanasyeve00ffbe2012-03-05 00:01:36 -080097 /**
98 * @brief Add string to digest calculation
99 * @param str string to put into digest
100 */
101 inline Digest &
102 operator << (const std::string &str);
Alexander Afanasyevdf718f52012-03-02 00:23:04 -0800103
Alexander Afanasyev58c77b02012-03-05 21:52:25 -0800104 /**
105 * @brief Add uint32_t value to digest calculation
106 * @param value uint32_t value to put into digest
107 */
Alexander Afanasyeve00ffbe2012-03-05 00:01:36 -0800108 inline Digest &
109 operator << (uint32_t value);
110
Alexander Afanasyev8f25cbb2012-03-01 23:53:40 -0800111private:
Alexander Afanasyeve00ffbe2012-03-05 00:01:36 -0800112 Digest &
113 operator = (Digest &digest) { return *this; }
114
115 /**
Alexander Afanasyeve00ffbe2012-03-05 00:01:36 -0800116 * @brief Add size bytes of buffer to the hash
117 */
118 void
119 update (const uint8_t *buffer, size_t size);
Alexander Afanasyev2fc2d672012-03-05 16:57:39 -0800120
121 friend std::ostream &
122 operator << (std::ostream &os, const Digest &digest);
123
124 friend std::istream &
125 operator >> (std::istream &is, Digest &digest);
Alexander Afanasyev8f25cbb2012-03-01 23:53:40 -0800126
127private:
128 EVP_MD_CTX *m_context;
129 uint8_t *m_buffer;
130 uint32_t m_hashLength;
131};
132
133struct DigestCalculationError : virtual boost::exception { };
134
Alexander Afanasyevd94542d2012-03-05 08:41:46 -0800135typedef boost::shared_ptr<Digest> DigestPtr;
136typedef boost::shared_ptr<const Digest> DigestConstPtr;
Alexander Afanasyeve00ffbe2012-03-05 00:01:36 -0800137
138Digest &
139Digest::operator << (const std::string &str)
140{
141 update (reinterpret_cast<const uint8_t*> (str.c_str ()), str.size ());
142 return *this;
143}
144
145inline Digest &
146Digest::operator << (uint32_t value)
147{
148 update (reinterpret_cast<const uint8_t*> (&value), sizeof (uint32_t));
149 return *this;
150}
151
Alexander Afanasyevb080dbf2012-03-05 10:25:22 -0800152std::ostream &
153operator << (std::ostream &os, const Digest &digest);
154
Alexander Afanasyev2fc2d672012-03-05 16:57:39 -0800155std::istream &
156operator >> (std::istream &is, Digest &digest);
157
Alexander Afanasyeve00ffbe2012-03-05 00:01:36 -0800158// template<class INT>
159// Digest &
160// Digest::operator << (INT value)
161// {
162// update (&value, sizeof (INT));
163// return *this;
164// }
165
166
Alexander Afanasyev8f25cbb2012-03-01 23:53:40 -0800167} // Sync
Alexander Afanasyev8f25cbb2012-03-01 23:53:40 -0800168
169#endif // SYNC_DIGEST_H