X-Git-Url: https://wimlib.net/git/?a=blobdiff_plain;f=src%2Fsha1.h;h=8573c5435bed079b83db967eabec52224e9afe35;hb=b78b15e68de3c3f9a6aed5d3514e86a72cc9c9b1;hp=e153f5338335b92e31ae181b11180bd9e14379d1;hpb=c6127ff151b2963c5b90e4018f08f53051a97dfd;p=wimlib diff --git a/src/sha1.h b/src/sha1.h index e153f533..8573c543 100644 --- a/src/sha1.h +++ b/src/sha1.h @@ -9,6 +9,8 @@ #define SHA1_HASH_SIZE 20 +extern const u8 zero_hash[SHA1_HASH_SIZE]; + static inline void copy_hash(u8 dest[SHA1_HASH_SIZE], const u8 src[SHA1_HASH_SIZE]) { @@ -46,7 +48,7 @@ static inline bool is_zero_hash(const u8 hash[SHA1_HASH_SIZE]) return true; } -static void zero_hash(u8 hash[SHA1_HASH_SIZE]) +static inline void zero_out_hash(u8 hash[SHA1_HASH_SIZE]) { memset(hash, 0, SHA1_HASH_SIZE); }