From c2111a2616d2e9b759ce84304ad61d4b90f3db8f Mon Sep 17 00:00:00 2001 From: SomberNight Date: Wed, 24 Jun 2020 20:23:06 +0200 Subject: [PATCH] binaries: use sha256 instead of sha1 for Windows native signing scheme - our new key now supports both - note that we don't bother to "dual sign" for both sha1 and sha2, as Win7 upwards sha2 is supported (and we already don't support XP, Vista, etc anymore) --- contrib/build-wine/sign.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/contrib/build-wine/sign.sh b/contrib/build-wine/sign.sh index 724b13dd1..83cb7196a 100755 --- a/contrib/build-wine/sign.sh +++ b/contrib/build-wine/sign.sh @@ -23,6 +23,7 @@ echo "Found $(ls *.exe | wc -w) files to sign." for f in $(ls *.exe); do echo "Signing $f..." osslsigncode sign \ + -h sha256 \ -certs "$CERT_FILE" \ -key "$KEY_FILE" \ -n "Electrum" \