[tor-commits] [builders/tor-browser-build] 04/09: Bug 40476: Update linux-signer-authenticode-signing

gitolite role git at cupani.torproject.org
Mon May 9 18:49:23 UTC 2022


This is an automated email from the git hooks/post-receive script.

richard pushed a commit to branch master
in repository builders/tor-browser-build.

commit f9d35e858808c324cab037fb5900727ae8113bf1
Author: Nicolas Vigier <boklm at torproject.org>
AuthorDate: Sat Apr 30 10:42:28 2022 +0200

    Bug 40476: Update linux-signer-authenticode-signing
    
    Update linux-signer-authenticode-signing to version currently in use.
---
 tools/signing/linux-signer-authenticode-signing | 44 +++++--------------------
 1 file changed, 8 insertions(+), 36 deletions(-)

diff --git a/tools/signing/linux-signer-authenticode-signing b/tools/signing/linux-signer-authenticode-signing
index 7e2e6f0..68643ee 100755
--- a/tools/signing/linux-signer-authenticode-signing
+++ b/tools/signing/linux-signer-authenticode-signing
@@ -1,48 +1,20 @@
 #!/bin/bash
-
-# Copyright (c) 2019, The Tor Project, Inc.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are
-# met:
-
-#     * Redistributions of source code must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-#
-#     * Redistributions in binary form must reproduce the above
-# copyright notice, this list of conditions and the following disclaimer
-# in the documentation and/or other materials provided with the
-# distribution.
-#
-#     * Neither the names of the copyright owners nor the names of its
-# contributors may be used to endorse or promote products derived from
-# this software without specific prior written permission.
-#
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
 set -e
 
+export YUBIHSM_PKCS11_CONF=~/yubihsm_pkcs11.conf
+
 read -sp "Enter passphrase: " pass
 echo
 for i in `find . -name "*.exe" -print`
 do
-  /path/to/patched/osslsigncode/build/osslsigncode \
+  /home/yubihsm/osslsigncode/osslsigncode \
                  -pkcs11engine /usr/lib/engines/engine_pkcs11.so \
-                 -pkcs11module /usr/lib/libeTPkcs11.so \
-                 -pass $pass \
+                 -pkcs11module /usr/local/lib/yubihsm_pkcs11.so \
+                 -pass "$pass" \
                  -h sha256 \
-                 -certs $path/to/cert \
-                 -key $key \
+                 -certs /home/yubihsm/tpo-cert.crt \
+                 -key 1c40 \
                  $i $i-signed
 done
+unset pass
 rename -f 's/-signed//' *-signed

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the tor-commits mailing list