#!/bin/sh # Verify changed PE file after signing with RFC 3161 timestamping. . $(dirname $0)/../test_library script_path=$(pwd) # PE file test_name="471. Verify changed PE file after signing with RFC 3161 timestamping" printf "\n%s\n" "$test_name" if [ -s "test.exe" ] && ! grep -q "no libcurl available" "results.log" then ../../osslsigncode sign -h sha256 \ -st "1556668800" \ -certs "${script_path}/../certs/cert.pem" -key "${script_path}/../certs/key.pem" \ -ts http://time.certum.pl/ \ -in "test.exe" -out "test_471.exe" verify_signature "$?" "471" "exe" "fail" "@2019-09-01 12:00:00" \ "UNUSED_PATTERN" "ASCII" "Hello world!" "MODIFY" test_result "$?" "$test_name" else printf "Test skipped\n" fi # CAB file # Command is not supported for non-PE files # MSI file # Command is not supported for non-PE files exit 0