electrum

Electrum Bitcoin wallet
git clone https://git.parazyd.org/electrum
Log | Files | Refs | Submodules

commit c2111a2616d2e9b759ce84304ad61d4b90f3db8f
parent d7fe6a2cf321a06217a1710627d014914fce63d4
Author: SomberNight <somber.night@protonmail.com>
Date:   Wed, 24 Jun 2020 20:23:06 +0200

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)

Diffstat:
Mcontrib/build-wine/sign.sh | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git 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" \