#!/bin/sh # Sign a PE/CAB/MSI file with addUnauthenticatedBlob. . $(dirname $0)/../test_library script_path=$(pwd) # PE file test_name="101. Sign a PE file with addUnauthenticatedBlob" printf "\n%s\n" "$test_name" if [ -s "test.exe" ] then ../../osslsigncode sign -h sha256 \ -st "1556668800" \ -addUnauthenticatedBlob \ -certs "${script_path}/../certs/cert.pem" -key "${script_path}/../certs/key.pem" \ -in "test.exe" -out "test_101.exe" 2>> "results.log" 1>&2 verify_signature "$?" "101" "exe" "success" "@2019-09-01 12:00:00" \ "UNUSED_PATTERN" "ASCII" "BEGIN_BLOB" "MODIFY" test_result "$?" "$test_name" else printf "Test skipped\n" fi # CAB file test_name="102. Sign a CAB file with addUnauthenticatedBlob" printf "\n%s\n" "$test_name" if [ -s "test.ex_" ] then ../../osslsigncode sign -h sha256 \ -st "1556668800" \ -addUnauthenticatedBlob \ -certs "${script_path}/../certs/cert.pem" -key "${script_path}/../certs/key.pem" \ -in "test.ex_" -out "test_102.ex_" 2>> "results.log" 1>&2 verify_signature "$?" "102" "ex_" "success" "@2019-09-01 12:00:00" \ "UNUSED_PATTERN" "ASCII" "BEGIN_BLOB" "MODIFY" test_result "$?" "$test_name" else printf "Test skipped\n" fi # MSI file test_name="103. Sign a MSI file with addUnauthenticatedBlob" printf "\n%s\n" "$test_name" if [ -s "sample.msi" ] then ../../osslsigncode sign -h sha256 \ -st "1556668800" \ -addUnauthenticatedBlob \ -certs "${script_path}/../certs/cert.pem" -key "${script_path}/../certs/key.pem" \ -in "sample.msi" -out "test_103.msi" 2>> "results.log" 1>&2 verify_signature "$?" "103" "msi" "success" "@2019-09-01 12:00:00" \ "UNUSED_PATTERN" "ASCII" "BEGIN_BLOB" "MODIFY" test_result "$?" "$test_name" else printf "Test skipped\n" fi exit 0