From 3a73ab675a19e2ea29b4cb1385db0188ce4997f8 Mon Sep 17 00:00:00 2001 From: Mattias Andrée Date: Sat, 24 Aug 2024 11:26:42 +0200 Subject: Make algorithms optional MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Mattias Andrée --- libhashsum_init_sha2_hasher.c | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'libhashsum_init_sha2_hasher.c') diff --git a/libhashsum_init_sha2_hasher.c b/libhashsum_init_sha2_hasher.c index ab64517..9246e48 100644 --- a/libhashsum_init_sha2_hasher.c +++ b/libhashsum_init_sha2_hasher.c @@ -1,5 +1,6 @@ /* See LICENSE file for copyright and license details. */ #include "common.h" +#ifdef SUPPORT_SHA2 LIBHASHSUM_1_NONNULL_ @@ -91,3 +92,16 @@ libhashsum_init_sha2_hasher(struct libhashsum_hasher *this, unsigned algobits, s libsha2_init(&this->state.sha2.s, algo); return 0; } + + +#else +int +libhashsum_init_sha2_hasher(struct libhashsum_hasher *this, unsigned algobits, size_t hashbits) +{ + (void) this; + (void) algobits; + (void) hashbits; + errno = ENOSYS; + return -1; +} +#endif -- cgit v1.2.3-70-g09d2