]> wimlib.net Git - wimlib/blob - src/sha1.h
Fix up return values
[wimlib] / src / sha1.h
1 #ifndef _WIMLIB_SHA1_H
2 #define _WIMLIB_SHA1_H
3
4 #include "config.h"
5 #include <stdio.h>
6 #include <stddef.h>
7 #include "string.h"
8 #include "util.h"
9
10 #define SHA1_HASH_SIZE 20
11
12 extern const u8 zero_hash[SHA1_HASH_SIZE];
13
14 static inline void copy_hash(u8 dest[SHA1_HASH_SIZE],
15                              const u8 src[SHA1_HASH_SIZE])
16 {
17         memcpy(dest, src, SHA1_HASH_SIZE);
18 }
19
20 static inline void random_hash(u8 hash[SHA1_HASH_SIZE])
21 {
22         randomize_byte_array(hash, SHA1_HASH_SIZE);
23 }
24
25 static inline bool hashes_equal(const u8 h1[SHA1_HASH_SIZE],
26                                 const u8 h2[SHA1_HASH_SIZE])
27 {
28         return memcmp(h1, h2, SHA1_HASH_SIZE) == 0;
29 }
30 static inline int hashes_cmp(const u8 h1[SHA1_HASH_SIZE],
31                              const u8 h2[SHA1_HASH_SIZE])
32 {
33         return memcmp(h1, h2, SHA1_HASH_SIZE);
34 }
35
36 /* Prints a hash code field. */
37 static inline void print_hash(const u8 hash[SHA1_HASH_SIZE])
38 {
39         print_byte_field(hash, SHA1_HASH_SIZE);
40 }
41
42 static inline bool is_zero_hash(const u8 hash[SHA1_HASH_SIZE])
43 {
44         if (hash)
45                 for (u8 i = 0; i < SHA1_HASH_SIZE / 4; i++)
46                         if (((u32*)hash)[i])
47                                 return false;
48         return true;
49 }
50
51 static inline void zero_out_hash(u8 hash[SHA1_HASH_SIZE])
52 {
53         memset(hash, 0, SHA1_HASH_SIZE);
54 }
55
56
57 #ifdef WITH_LIBCRYPTO
58
59 #include <openssl/sha.h>
60 #define sha1_buffer   SHA1
61 #define sha1_init     SHA1_Init
62 #define sha1_update   SHA1_Update
63 #define sha1_final    SHA1_Final
64
65 #else /* WITH_LIBCRYPTO */
66
67 typedef struct {
68     u32 state[5];
69     u32 count[2];
70     u8  buffer[64];
71 } SHA_CTX;
72
73 extern void sha1_buffer(const u8 buffer[], size_t len, u8 hash[SHA1_HASH_SIZE]);
74 extern void sha1_init(SHA_CTX *ctx);
75 extern void sha1_update(SHA_CTX *ctx, const u8 data[], size_t len);
76 extern void sha1_final(u8 hash[SHA1_HASH_SIZE], SHA_CTX *ctx);
77
78 #endif /* !WITH_LIBCRYPTO */
79
80 extern int sha1sum(const char *filename, u8 hash[SHA1_HASH_SIZE]);
81
82
83
84 #endif /* _WIMLIB_SHA1_H */