From b29f4153e83623f24bebe99976e1368ef31bb008 Mon Sep 17 00:00:00 2001 From: Mattias Andrée Date: Thu, 21 May 2026 17:12:20 +0200 Subject: Add support for custom hash functions MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Mattias Andrée --- librecrypt_realise_salts.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'librecrypt_realise_salts.c') diff --git a/librecrypt_realise_salts.c b/librecrypt_realise_salts.c index 64d65c4..b2580eb 100644 --- a/librecrypt_realise_salts.c +++ b/librecrypt_realise_salts.c @@ -128,7 +128,7 @@ librecrypt_realise_salts(char *restrict out_buffer, size_t size, const char *set /* Write padding charaters */ right = MIN(right, size); for (i = 0u; i < right; i++) - out_buffer[right] = pad; /* $covered$ (TODO we currently don't have an algorithm to trigger this) */ + out_buffer[right] = pad; /* TODO test with custom hash function */ out_buffer = &out_buffer[right]; size -= right; } -- cgit v1.3.1