crypto-algorithms.c

Basic implementations of standard cryptography algorithms, like AES and SHA-1
git clone git://git.finwo.net/lib/crypto-algorithms.c
Log | Files | Refs | README

commit 8cdca1827f41a9bed47140c274e652714e93c40b
parent cfbde48414baacf51fc7c74f275190881f037d32
Author: finwo <finwo@pm.me>
Date:   Sat, 10 Jan 2026 22:14:44 +0100

Fix typo in des.h header guard

Diffstat:
Mdes.h | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/des.h b/des.h @@ -10,7 +10,7 @@ *********************************************************************/ #ifndef DES_H -#define DESH +#define DES_H /*************************** HEADER FILES ***************************/ #include <stddef.h>