From 3ea069f2a5e519872a1608746ce3dfe707087750 Mon Sep 17 00:00:00 2001 From: DaCyber-ThExTincT Date: Wed, 29 Apr 2026 17:58:02 +0200 Subject: [PATCH] Update crypto for OpenSSL 3.x output format MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit OpenSSL 3.x gives `MD5(stdin)= ` instead of `(stdin)= ` earlier → sed regex didn't strip the MD5 prefix → Key validation failed with "looks bad" --- scripts/crypto | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/crypto b/scripts/crypto index 020d2a8..95253de 100755 --- a/scripts/crypto +++ b/scripts/crypto @@ -476,7 +476,7 @@ yf_substring() ####################################################################################################### digest() { - openssl dgst -md5 | sed -n -e "s|(stdin)= \(.*\)|\1|p" + openssl dgst -md5 -r | awk '{print $1}' } ####################################################################################################### # #