GNUnet 0.22.2
crypto_hash.c
Go to the documentation of this file.
1/*
2 This file is part of GNUnet.
3 Copyright (C) 2001-2013 GNUnet e.V.
4
5 GNUnet is free software: you can redistribute it and/or modify it
6 under the terms of the GNU Affero General Public License as published
7 by the Free Software Foundation, either version 3 of the License,
8 or (at your option) any later version.
9
10 GNUnet is distributed in the hope that it will be useful, but
11 WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Affero General Public License for more details.
14
15 You should have received a copy of the GNU Affero General Public License
16 along with this program. If not, see <http://www.gnu.org/licenses/>.
17
18 SPDX-License-Identifier: AGPL3.0-or-later
19
20 */
27#include "platform.h"
28#include "gnunet_util_lib.h"
29#include "benchmark.h"
30#include <gcrypt.h>
31
32#define LOG(kind, ...) GNUNET_log_from (kind, "util-crypto-hash", __VA_ARGS__)
33
34#define LOG_STRERROR_FILE(kind, syscall, \
35 filename) GNUNET_log_from_strerror_file (kind, \
36 "util-crypto-hash", \
37 syscall, \
38 filename)
39
40void
41GNUNET_CRYPTO_hash (const void *block,
42 size_t size,
43 struct GNUNET_HashCode *ret)
44{
45 BENCHMARK_START (hash);
46 gcry_md_hash_buffer (GCRY_MD_SHA512, ret, block, size);
47 BENCHMARK_END (hash);
48}
49
50
51/* ***************** binary-ASCII encoding *************** */
52
53
54void
57{
58 char *np;
59
60 np = GNUNET_STRINGS_data_to_string ((const unsigned char *) block,
61 sizeof(struct GNUNET_HashCode),
62 (char *) result,
63 sizeof(struct
65 - 1);
66 GNUNET_assert (NULL != np);
67 *np = '\0';
68}
69
70
73 size_t enclen,
74 struct GNUNET_HashCode *result)
75{
76 char upper_enc[enclen + 1];
77 char *up_ptr = upper_enc;
78
80 return GNUNET_SYSERR;
81
82 return GNUNET_STRINGS_string_to_data (upper_enc, enclen,
83 (unsigned char *) result,
84 sizeof(struct GNUNET_HashCode));
85}
86
87
88unsigned int
90 const struct GNUNET_HashCode *b)
91{
92 unsigned int x1 = (a->bits[1] - b->bits[1]) >> 16;
93 unsigned int x2 = (b->bits[1] - a->bits[1]) >> 16;
94
95 return(x1 * x2);
96}
97
98
99void
101 struct GNUNET_HashCode *result)
102{
104}
105
106
107void
109 const struct GNUNET_HashCode *b,
110 struct GNUNET_HashCode *result)
111{
112 for (ssize_t i = (sizeof(struct GNUNET_HashCode) / sizeof(unsigned int)) - 1;
113 i >= 0;
114 i--)
115 result->bits[i] = b->bits[i] - a->bits[i];
116}
117
118
119void
121 const struct GNUNET_HashCode *delta, struct
123{
124 for (ssize_t i = (sizeof(struct GNUNET_HashCode) / sizeof(unsigned int)) - 1;
125 i >= 0;
126 i--)
127 result->bits[i] = delta->bits[i] + a->bits[i];
128}
129
130
131void
133 const struct GNUNET_HashCode *b,
134 struct GNUNET_HashCode *result)
135{
136 const unsigned long long *lla = (const unsigned long long *) a;
137 const unsigned long long *llb = (const unsigned long long *) b;
138 unsigned long long *llr = (unsigned long long *) result;
139
140 GNUNET_static_assert (8 == sizeof (unsigned long long));
141 GNUNET_static_assert (0 == sizeof (*a) % sizeof (unsigned long long));
142
143 for (int i = sizeof (*result) / sizeof (*llr) - 1; i>=0; i--)
144 llr[i] = lla[i] ^ llb[i];
145}
146
147
148void
150 const struct GNUNET_HashCode *hc,
153{
156 skey,
157 sizeof(*skey),
158 "Hash key derivation",
159 strlen ("Hash key derivation"),
160 hc, sizeof(*hc),
161 NULL, 0));
164 iv,
165 sizeof(*iv),
166 "Initialization vector derivation",
167 strlen ("Initialization vector derivation"),
168 hc, sizeof(*hc),
169 NULL, 0));
170}
171
172
173unsigned int
175{
176 const unsigned long long *llp = (const unsigned long long *) h;
177 unsigned int ret = 0;
178 unsigned int i;
179
180 GNUNET_static_assert (8 == sizeof (unsigned long long));
181 GNUNET_static_assert (0 == sizeof (*h) % sizeof (unsigned long long));
182 for (i = 0; i<sizeof (*h) / sizeof (*llp); i++)
183 {
184 if (0LLU != llp[i])
185 break;
186 ret += sizeof (*llp) * 8;
187 }
188 if (ret == 8 * sizeof (*h))
189 return ret;
190 ret += __builtin_clzll (GNUNET_ntohll ((uint64_t) llp[i]));
191 return ret;
192}
193
194
195unsigned int
197{
198 const unsigned long long *llp = (const unsigned long long *) h;
199 unsigned int ret = 0;
200 int i;
201
202 GNUNET_static_assert (8 == sizeof (unsigned long long));
203 GNUNET_static_assert (0 == sizeof (*h) % sizeof (unsigned long long));
204 for (i = sizeof (*h) / sizeof (*llp) - 1; i>=0; i--)
205 {
206 if (0LLU != llp[i])
207 break;
208 ret += sizeof (*llp) * 8;
209 }
210 if (ret == 8 * sizeof (*h))
211 return ret;
212 ret += __builtin_ctzll (GNUNET_ntohll ((uint64_t) llp[i]));
213 return ret;
214}
215
216
217int
219 const struct GNUNET_HashCode *h2)
220{
221 unsigned int *i1;
222 unsigned int *i2;
223
224 i1 = (unsigned int *) h1;
225 i2 = (unsigned int *) h2;
226 for (ssize_t i = (sizeof(struct GNUNET_HashCode) / sizeof(unsigned int)) - 1;
227 i >= 0;
228 i--)
229 {
230 if (i1[i] > i2[i])
231 return 1;
232 if (i1[i] < i2[i])
233 return -1;
234 }
235 return 0;
236}
237
238
239int
241 const struct GNUNET_HashCode *h2,
242 const struct GNUNET_HashCode *target)
243{
244 const unsigned long long *l1 = (const unsigned long long *) h1;
245 const unsigned long long *l2 = (const unsigned long long *) h2;
246 const unsigned long long *t = (const unsigned long long *) target;
247
248 GNUNET_static_assert (0 == sizeof (*h1) % sizeof (*l1));
249 for (size_t i = 0; i < sizeof(*h1) / sizeof(*l1); i++)
250 {
251 unsigned long long x1 = l1[i] ^ t[i];
252 unsigned long long x2 = l2[i] ^ t[i];
253
254 if (x1 > x2)
255 return 1;
256 if (x1 < x2)
257 return -1;
258 }
259 return 0;
260}
261
262
263void
266 const struct GNUNET_CRYPTO_SymmetricSessionKey *rkey,
267 const void *salt, size_t salt_len,
268 ...)
269{
270 va_list argp;
271
272 va_start (argp,
273 salt_len);
275 rkey,
276 salt, salt_len,
277 argp);
278 va_end (argp);
279}
280
281
282void
285 const struct GNUNET_CRYPTO_SymmetricSessionKey *rkey,
286 const void *salt, size_t salt_len,
287 va_list argp)
288{
289 GNUNET_CRYPTO_kdf_v (key->key, sizeof(key->key),
290 salt, salt_len,
291 rkey, sizeof(struct GNUNET_CRYPTO_SymmetricSessionKey),
292 argp);
293}
294
295
296void
297GNUNET_CRYPTO_hmac_raw (const void *key, size_t key_len,
298 const void *plaintext, size_t plaintext_len,
299 struct GNUNET_HashCode *hmac)
300{
301 static int once;
302 static gcry_md_hd_t md;
303 const unsigned char *mc;
304
305 if (! once)
306 {
307 once = 1;
308 GNUNET_assert (GPG_ERR_NO_ERROR ==
309 gcry_md_open (&md,
310 GCRY_MD_SHA512,
311 GCRY_MD_FLAG_HMAC));
312 }
313 else
314 {
315 gcry_md_reset (md);
316 }
317 GNUNET_assert (GPG_ERR_NO_ERROR ==
318 gcry_md_setkey (md, key, key_len));
319 gcry_md_write (md, plaintext, plaintext_len);
320 mc = gcry_md_read (md, GCRY_MD_SHA512);
321 GNUNET_assert (NULL != mc);
322 GNUNET_memcpy (hmac->bits, mc, sizeof(hmac->bits));
323}
324
325
326void
328 const void *plaintext, size_t plaintext_len,
329 struct GNUNET_HashCode *hmac)
330{
331 GNUNET_CRYPTO_hmac_raw ((void *) key->key, sizeof(key->key),
332 plaintext, plaintext_len,
333 hmac);
334}
335
336
338{
342 gcry_md_hd_t hd;
343};
344
345
346struct GNUNET_HashContext *
348{
349 struct GNUNET_HashContext *hc;
350
351 BENCHMARK_START (hash_context_start);
352 hc = GNUNET_new (struct GNUNET_HashContext);
353 GNUNET_assert (0 ==
354 gcry_md_open (&hc->hd,
355 GCRY_MD_SHA512,
356 0));
357 BENCHMARK_END (hash_context_start);
358 return hc;
359}
360
361
362void
364 const void *buf,
365 size_t size)
366{
367 BENCHMARK_START (hash_context_read);
368 gcry_md_write (hc->hd, buf, size);
369 BENCHMARK_END (hash_context_read);
370}
371
372
373struct GNUNET_HashContext *
375{
376 struct GNUNET_HashContext *cp;
377
378 cp = GNUNET_new (struct GNUNET_HashContext);
379 GNUNET_assert (0 ==
380 gcry_md_copy (&cp->hd,
381 hc->hd));
382 return cp;
383}
384
385
386void
388 struct GNUNET_HashCode *r_hash)
389{
390 const void *res = gcry_md_read (hc->hd, 0);
391
392 BENCHMARK_START (hash_context_finish);
393
394 GNUNET_assert (NULL != res);
395 if (NULL != r_hash)
396 GNUNET_memcpy (r_hash,
397 res,
398 sizeof(struct GNUNET_HashCode));
400 BENCHMARK_END (hash_context_finish);
401}
402
403
404void
406{
407 gcry_md_close (hc->hd);
408 GNUNET_free (hc);
409}
410
411
412/* end of crypto_hash.c */
benchmarking for various operations
#define BENCHMARK_START(opname)
Definition: benchmark.h:57
#define BENCHMARK_END(opname)
Definition: benchmark.h:58
static int once
Global to mark if we've run the initialization.
Definition: gnsrecord.c:65
static struct GNUNET_ARM_Handle * h
Connection with ARM.
Definition: gnunet-arm.c:98
static int ret
Final status code.
Definition: gnunet-arm.c:93
struct GNUNET_HashCode key
The key used in the DHT.
static OpusEncoder * enc
OPUS encoder.
static char * res
Currently read line or NULL on EOF.
static struct GNUNET_TESTBED_Controller * mc
Handle to the master controller.
static int result
Global testing status.
static struct GNUNET_CRYPTO_PowSalt salt
Salt for PoW calculations.
Definition: gnunet-scrypt.c:34
static struct GNUNET_SCHEDULER_Task * t
Main task.
static enum @44 mode
Should we do a PUT (mode = 0) or GET (mode = 1);.
void GNUNET_CRYPTO_random_block(enum GNUNET_CRYPTO_Quality mode, void *buffer, size_t length)
Fill block with a random values.
GNUNET_CRYPTO_Quality
Desired quality level for random numbers.
void GNUNET_CRYPTO_hash_difference(const struct GNUNET_HashCode *a, const struct GNUNET_HashCode *b, struct GNUNET_HashCode *result)
compute result = b - a
Definition: crypto_hash.c:108
void GNUNET_CRYPTO_hash(const void *block, size_t size, struct GNUNET_HashCode *ret)
Compute hash of a given block.
Definition: crypto_hash.c:41
void GNUNET_CRYPTO_hash_to_enc(const struct GNUNET_HashCode *block, struct GNUNET_CRYPTO_HashAsciiEncoded *result)
Convert hash to ASCII encoding.
Definition: crypto_hash.c:55
void GNUNET_CRYPTO_hash_create_random(enum GNUNET_CRYPTO_Quality mode, struct GNUNET_HashCode *result)
Create a random hash code.
Definition: crypto_hash.c:100
void GNUNET_CRYPTO_hmac(const struct GNUNET_CRYPTO_AuthKey *key, const void *plaintext, size_t plaintext_len, struct GNUNET_HashCode *hmac)
Calculate HMAC of a message (RFC 2104)
Definition: crypto_hash.c:327
void GNUNET_CRYPTO_hash_sum(const struct GNUNET_HashCode *a, const struct GNUNET_HashCode *delta, struct GNUNET_HashCode *result)
compute result = a + delta
Definition: crypto_hash.c:120
void GNUNET_CRYPTO_hash_xor(const struct GNUNET_HashCode *a, const struct GNUNET_HashCode *b, struct GNUNET_HashCode *result)
compute result = a ^ b
Definition: crypto_hash.c:132
int GNUNET_CRYPTO_hash_xorcmp(const struct GNUNET_HashCode *h1, const struct GNUNET_HashCode *h2, const struct GNUNET_HashCode *target)
Find out which of the two GNUNET_CRYPTO_hash codes is closer to target in the XOR metric (Kademlia).
Definition: crypto_hash.c:240
void GNUNET_CRYPTO_hmac_derive_key_v(struct GNUNET_CRYPTO_AuthKey *key, const struct GNUNET_CRYPTO_SymmetricSessionKey *rkey, const void *salt, size_t salt_len, va_list argp)
Derive an authentication key.
Definition: crypto_hash.c:283
enum GNUNET_GenericReturnValue GNUNET_CRYPTO_hash_from_string2(const char *enc, size_t enclen, struct GNUNET_HashCode *result)
Convert ASCII encoding back to a 'struct GNUNET_HashCode'.
Definition: crypto_hash.c:72
int GNUNET_CRYPTO_hash_cmp(const struct GNUNET_HashCode *h1, const struct GNUNET_HashCode *h2)
Compare function for HashCodes, producing a total ordering of all hashcodes.
Definition: crypto_hash.c:218
unsigned int GNUNET_CRYPTO_hash_distance_u32(const struct GNUNET_HashCode *a, const struct GNUNET_HashCode *b)
Compute the distance between 2 hashcodes.
Definition: crypto_hash.c:89
enum GNUNET_GenericReturnValue GNUNET_CRYPTO_kdf(void *result, size_t out_len, const void *xts, size_t xts_len, const void *skm, size_t skm_len,...)
Derive key.
Definition: crypto_kdf.c:62
void GNUNET_CRYPTO_hmac_derive_key(struct GNUNET_CRYPTO_AuthKey *key, const struct GNUNET_CRYPTO_SymmetricSessionKey *rkey, const void *salt, size_t salt_len,...)
Derive an authentication key.
Definition: crypto_hash.c:264
void GNUNET_CRYPTO_hash_to_aes_key(const struct GNUNET_HashCode *hc, struct GNUNET_CRYPTO_SymmetricSessionKey *skey, struct GNUNET_CRYPTO_SymmetricInitializationVector *iv)
Convert a hashcode into a key.
Definition: crypto_hash.c:149
unsigned int GNUNET_CRYPTO_hash_count_leading_zeros(const struct GNUNET_HashCode *h)
Count the number of leading 0 bits in h.
Definition: crypto_hash.c:174
void GNUNET_CRYPTO_hash_context_read(struct GNUNET_HashContext *hc, const void *buf, size_t size)
Add data to be hashed.
Definition: crypto_hash.c:363
struct GNUNET_HashContext * GNUNET_CRYPTO_hash_context_copy(const struct GNUNET_HashContext *hc)
Make a copy of the hash computation.
Definition: crypto_hash.c:374
uint64_t GNUNET_ntohll(uint64_t n)
Convert unsigned 64-bit integer to host byte order.
Definition: common_endian.c:54
enum GNUNET_GenericReturnValue GNUNET_CRYPTO_kdf_v(void *result, size_t out_len, const void *xts, size_t xts_len, const void *skm, size_t skm_len, va_list argp)
Derive key.
Definition: crypto_kdf.c:38
void GNUNET_CRYPTO_hash_context_abort(struct GNUNET_HashContext *hc)
Abort hashing, do not bother calculating final result.
Definition: crypto_hash.c:405
void GNUNET_CRYPTO_hash_context_finish(struct GNUNET_HashContext *hc, struct GNUNET_HashCode *r_hash)
Finish the hash computation.
Definition: crypto_hash.c:387
#define GNUNET_memcpy(dst, src, n)
Call memcpy() but check for n being 0 first.
unsigned int GNUNET_CRYPTO_hash_count_tailing_zeros(const struct GNUNET_HashCode *h)
Count the number of tailing 0 bits in h.
Definition: crypto_hash.c:196
GNUNET_GenericReturnValue
Named constants for return values.
struct GNUNET_HashContext * GNUNET_CRYPTO_hash_context_start()
Start incremental hashing operation.
Definition: crypto_hash.c:347
void GNUNET_CRYPTO_hmac_raw(const void *key, size_t key_len, const void *plaintext, size_t plaintext_len, struct GNUNET_HashCode *hmac)
Calculate HMAC of a message (RFC 2104) TODO: Shouldn't this be the standard hmac function and the abo...
Definition: crypto_hash.c:297
#define GNUNET_static_assert(cond)
Assertion to be checked (if supported by C compiler) at compile time, otherwise checked at runtime an...
uint32_t bits[512/8/sizeof(uint32_t)]
@ GNUNET_OK
@ GNUNET_YES
@ GNUNET_SYSERR
#define GNUNET_assert(cond)
Use this for fatal errors that cannot be handled.
#define GNUNET_new(type)
Allocate a struct or union of the given type.
#define GNUNET_free(ptr)
Wrapper around free.
char * GNUNET_STRINGS_data_to_string(const void *data, size_t size, char *out, size_t out_size)
Convert binary data to ASCII encoding using CrockfordBase32.
Definition: strings.c:732
enum GNUNET_GenericReturnValue GNUNET_STRINGS_utf8_toupper(const char *input, char *output)
Convert the utf-8 input string to upper case.
Definition: strings.c:481
enum GNUNET_GenericReturnValue GNUNET_STRINGS_string_to_data(const char *enc, size_t enclen, void *out, size_t out_size)
Convert CrockfordBase32 encoding back to data.
Definition: strings.c:812
static unsigned int size
Size of the "table".
Definition: peer.c:68
static struct GNUNET_TIME_Relative delta
Definition: speedup.c:36
type for (message) authentication keys
0-terminated ASCII encoding of a struct GNUNET_HashCode.
A 512-bit hashcode.
gcry_md_hd_t hd
Internal state of the hash function.
Definition: crypto_hash.c:342