From 995d35b6530fc34e706f492bf356c4415d4ac503 Mon Sep 17 00:00:00 2001 From: Andre Noll Date: Mon, 24 Aug 2015 17:35:08 +0200 Subject: [PATCH] Fix comment on SHA1 implementation. The dependency on openssl was dropped six years ago in commit f0884471. This commit corrects the stale comment that still says we use openssl's sha1 implementation. --- hash.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hash.h b/hash.h index 4603fdf..0feee84 100644 --- a/hash.h +++ b/hash.h @@ -12,7 +12,7 @@ #define HASH_TYPE unsigned char #include "sha1.h" -/** We use openssl's sha1 implementation. */ +/** Our own sha1 implementation, see sha1.c. */ #define hash_function sha1_hash /** -- 2.39.2