diff options
author | Carl Dong <contact@carldong.me> | 2021-05-13 15:26:52 -0400 |
---|---|---|
committer | Carl Dong <contact@carldong.me> | 2021-05-13 15:41:56 -0400 |
commit | ee0a67c32a8861eab650bf8894af06807578eba0 (patch) | |
tree | e88f5a04b2e60530fce0a0918999f456b071f8ef /contrib | |
parent | 38eb91eb0616ed6dbe34c23e11588d130fef07f8 (diff) |
codesigning: Use SHA256 as digest for osslsigncode (Windows)
Diffstat (limited to 'contrib')
-rwxr-xr-x | contrib/windeploy/detached-sig-create.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/windeploy/detached-sig-create.sh b/contrib/windeploy/detached-sig-create.sh index 31720e72e7..29802e622e 100755 --- a/contrib/windeploy/detached-sig-create.sh +++ b/contrib/windeploy/detached-sig-create.sh @@ -25,7 +25,7 @@ CERTFILE="win-codesign.cert" mkdir -p "${OUTSUBDIR}" basename -a $(ls -1 "${SRCDIR}"/*-unsigned.exe) | while read UNSIGNED; do echo Signing "${UNSIGNED}" - "${OSSLSIGNCODE}" sign -certs "${CERTFILE}" -t "${TIMESERVER}" -in "${SRCDIR}/${UNSIGNED}" -out "${WORKDIR}/${UNSIGNED}" "$@" + "${OSSLSIGNCODE}" sign -certs "${CERTFILE}" -t "${TIMESERVER}" -h sha256 -in "${SRCDIR}/${UNSIGNED}" -out "${WORKDIR}/${UNSIGNED}" "$@" "${OSSLSIGNCODE}" extract-signature -pem -in "${WORKDIR}/${UNSIGNED}" -out "${OUTSUBDIR}/${UNSIGNED}.pem" && rm "${WORKDIR}/${UNSIGNED}" done |