#!/bin/sh # Sign a PE file with SHA1 set of cryptographic hash functions. . $(dirname $0)/../test_library script_path=$(pwd) # PE file test_name="221. Sign a PE file with SHA1 set of cryptographic hash functions" printf "\n%s\n" "$test_name" if test -s "test.exe" then ../../osslsigncode sign -h sha1 \ -st "1556668800" \ -certs "${script_path}/../certs/cert.pem" -key "${script_path}/../certs/key.pem" \ -in "test.exe" -out "test_221.exe" verify_signature "$?" "221" "exe" "success" "@2019-09-01 12:00:00" \ "UNUSED_PATTERN" "ASCII" "SHA1" "UNUSED_PATTERN" test_result "$?" "$test_name" else printf "Test skipped\n" fi # CAB file # MSI file # CAT file exit 0