/* * sha1.h * * Copyright 2022-2023 Eric Biggers * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation * files (the "Software"), to deal in the Software without * restriction, including without limitation the rights to use, * copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the * Software is furnished to do so, subject to the following * conditions: * * The above copyright notice and this permission notice shall be * included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR * OTHER DEALINGS IN THE SOFTWARE. */ #ifndef _WIMLIB_SHA1_H #define _WIMLIB_SHA1_H #include #include "wimlib/types.h" #include "wimlib/util.h" #define SHA1_HASH_SIZE 20 #define SHA1_BLOCK_SIZE 64 struct sha1_ctx { u64 bytecount; u32 h[5]; u8 buffer[SHA1_BLOCK_SIZE]; }; void sha1_init(struct sha1_ctx *ctx); void sha1_update(struct sha1_ctx *ctx, const void *data, size_t len); void sha1_final(struct sha1_ctx *ctx, u8 hash[SHA1_HASH_SIZE]); void sha1(const void *data, size_t len, u8 hash[SHA1_HASH_SIZE]); extern const u8 zero_hash[SHA1_HASH_SIZE]; #define SHA1_HASH_STRING_LEN (2 * SHA1_HASH_SIZE + 1) void sprint_hash(const u8 hash[SHA1_HASH_SIZE], tchar strbuf[SHA1_HASH_STRING_LEN]); static inline void copy_hash(u8 dest[SHA1_HASH_SIZE], const u8 src[SHA1_HASH_SIZE]) { memcpy(dest, src, SHA1_HASH_SIZE); } static inline int hashes_cmp(const u8 h1[SHA1_HASH_SIZE], const u8 h2[SHA1_HASH_SIZE]) { return memcmp(h1, h2, SHA1_HASH_SIZE); } static inline bool hashes_equal(const u8 h1[SHA1_HASH_SIZE], const u8 h2[SHA1_HASH_SIZE]) { return !hashes_cmp(h1, h2); } static inline bool is_zero_hash(const u8 *hash) { return hash == zero_hash || hashes_equal(hash, zero_hash); } #endif /* _WIMLIB_SHA1_H */