From c39a5f8169fcb860804c4672d15c28dc915b95cc Mon Sep 17 00:00:00 2001 From: Imbus <> Date: Sun, 24 Aug 2025 15:30:38 +0200 Subject: [PATCH] Remove seed on clean, extra optional removal on each build --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index 77d8e28..f7d18a5 100644 --- a/Makefile +++ b/Makefile @@ -9,6 +9,7 @@ SRC = main.c monocypher.c $(TARGET): $(SRC) seed.h @echo CC $@ @$(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS) + @#rm seed.h # Enable for extra security seed.h: openssl rand 32 \ @@ -21,3 +22,4 @@ seed.h: clean: rm -f $(TARGET) + rm -f seed.h