#!/bin/sh # Signing a PE/CAB/MSI file with a PEM key file with a password together with a PEM certificate. . $(dirname $0)/../test_library # PE file test_name="111. Signing a PE file with a PEM key file with a password read from password.txt file" printf "\n%s\n" "$test_name" if [ -s "test.exe" ] then faketime -f '@2019-01-01 00:00:00' /bin/bash -c ' script_path=$(pwd) ../../osslsigncode sign -h sha256 \ -readpass "${script_path}/../certs/password.txt" \ -certs "${script_path}/../certs/cert.pem" -key "${script_path}/../certs/key.pem" \ -in "test.exe" -out "test_111.exe"' verify_signature "$?" "111" "exe" "UNUSED_PATTERN" test_result "$?" "$test_name" else printf "Test skipped\n" fi # CAB file test_name="112. Signing a CAB file with a PEM key file with a password read from password.txt file" printf "\n%s\n" "$test_name" if [ -s "test.ex_" ] then faketime -f '@2019-01-01 00:00:00' /bin/bash -c ' script_path=$(pwd) ../../osslsigncode sign -h sha256 \ -readpass "${script_path}/../certs/password.txt" \ -certs "${script_path}/../certs/cert.pem" -key "${script_path}/../certs/key.pem" \ -in "test.ex_" -out "test_112.ex_"' verify_text "$?" "112" "ex_" "osslsigncode" "ASCII" "UNUSED_PATTERN" "UNUSED_PATTERN" test_result "$?" "$test_name" else printf "Test skipped\n" fi # MSI file test_name="113. Signing a MSI file with a PEM key file with a password read from password.txt file" printf "\n%s\n" "$test_name" if [ -s "sample.msi" ] then faketime -f '@2019-01-01 00:00:00' /bin/bash -c ' script_path=$(pwd) ../../osslsigncode sign -h sha256 \ -readpass "${script_path}/../certs/password.txt" \ -certs "${script_path}/../certs/cert.pem" -key "${script_path}/../certs/key.pem" \ -in "sample.msi" -out "test_113.msi"' verify_signature "$?" "113" "msi" "UNUSED_PATTERN" test_result "$?" "$test_name" else printf "Test skipped\n" fi exit 0