From e430d1ed14ec370d1464701d0eac77037d9dcdf8 Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Fri, 10 May 2024 14:44:20 +0200 Subject: [PATCH] fix English contractions --- gen-keys/mk-cert-code.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gen-keys/mk-cert-code.sh b/gen-keys/mk-cert-code.sh index 6e87a5cba..39ca699c8 100755 --- a/gen-keys/mk-cert-code.sh +++ b/gen-keys/mk-cert-code.sh @@ -42,7 +42,7 @@ set -o errexit -o nounset; [ -n "${BASH:-}${ZSH_NAME:-}" ] && set -o pipefail # Fun read: https://www.cs.auckland.ac.nz/~pgut001/pubs/pfx.html # - .pvk is Microsoft proprietary Private Key format, encrypted (weak crypto) # - .spc is Microsoft name for .p7b (PKCS #7) = Software Publisher Certificate -# (or Certificate Bundle), internally it's DER format and contains +# (or Certificate Bundle), internally it is DER format and contains # certificates. # # - private-key ASN.1 data structure in PEM or DER format @@ -157,7 +157,7 @@ EOF openssl x509 -in "${root}-cert.pem" -text -noout -nameopt utf8 -sha256 -fingerprint > "${root}-cert.pem.x509.txt" openssl asn1parse -i -in "${root}-cert.pem" > "${root}-cert.pem.asn1.txt" -# subordinates (don't set exactly the same 'subject' data as above) +# subordinates (do not set exactly the same 'subject' data as above) # subordinate #1: code signing @@ -443,7 +443,7 @@ if [ -f "${test}" ]; then # Verify signature with sigcheck if "${wine}" sigcheck64.exe -nobanner -accepteula "${file}"; then - # If we haven't specified a timestamp server when code signing, + # If we have not specified a timestamp server when code signing, # sigcheck reports the _current time_ as "Signing date". echo "! OK: signed exe passes 'sigcheck64.exe': ${file}" else