03b45e04db71965dd70dfce56eafce6ad83f163e
2 * Copyright (C) 2007-2008 Andre Noll <maan@systemlinux.org>
4 * Licensed under the GPL v2. For licencing details see COPYING.
7 /** \file hash.h Inline functions for hash values. */
9 #include "portable_io.h"
11 /** hash arrays are always unsigned char. */
12 #define HASH_TYPE unsigned char
15 /** We use openssl's sha1 implementation. */
16 #define hash_function sha1_hash
21 * \param h1 Pointer to the first hash value.
22 * \param h2 Pointer to the second hash value.
24 * \return 1, -1, or zero, depending on whether \a h1 is greater than,
25 * less than or equal to h2, respectively.
27 _static_inline_
int hash_compare(HASH_TYPE
*h1
, HASH_TYPE
*h2
)
31 for (i
= 0; i
< HASH_SIZE
; i
++) {
41 * Convert a hash value to ascii format.
43 * \param hash the hash value.
44 * \param asc Result pointer.
46 * \a asc must point to an area of at least 2 * \p HASH_SIZE + 1 bytes which
47 * will be filled by the function with the ascii representation of the hash
48 * value given by \a hash, and a terminating \p NULL byte.
50 _static_inline_
void hash_to_asc(HASH_TYPE
*hash
, char *asc
)
53 const char hexchar
[] = "0123456789abcdef";
55 for (i
= 0; i
< HASH_SIZE
; i
++) {
56 asc
[2 * i
] = hexchar
[hash
[i
] >> 4];
57 asc
[2 * i
+ 1] = hexchar
[hash
[i
] & 0xf];
59 asc
[2 * HASH_SIZE
] = '\0';