#!/bin/sh # Add an RFC 3161 timestamp to signed PE/CAB/MSI file. . $(dirname $0)/../test_library script_path=$(pwd) # PE file test_name="381. Add RFC 3161 timestamp to signed PE file" printf "\n%s\n" "$test_name" if test -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" \ -in "test.exe" -out "test_381_signed.exe" ../../osslsigncode add \ -ts http://time.certum.pl/ \ -ts http://timestamp.digicert.com/ \ -verbose \ -in "test_381_signed.exe" -out "test_381.exe" verify_signature "$?" "381" "exe" "success" "@2019-09-01 12:00:00" \ "UNUSED_PATTERN" "ASCII" "Timestamp Server Signature" "UNUSED_PATTERN" test_result "$?" "$test_name" else printf "Test skipped\n" fi # CAB file test_name="382. Add RFC 3161 timestamp to signed CAB file" printf "\n%s\n" "$test_name" if test -s "test.ex_" && ! 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" \ -in "test.ex_" -out "test_382_signed.ex_" ../../osslsigncode add \ -ts http://time.certum.pl/ \ -ts http://timestamp.digicert.com/ \ -verbose \ -in "test_382_signed.ex_" -out "test_382.ex_" verify_signature "$?" "382" "ex_" "success" "@2019-09-01 12:00:00" \ "UNUSED_PATTERN" "ASCII" "Timestamp Server Signature" "UNUSED_PATTERN" test_result "$?" "$test_name" else printf "Test skipped\n" fi # MSI file test_name="383. Add RFC 3161 timestamp to signed MSI file" printf "\n%s\n" "$test_name" if test -s "sample.msi" && ! 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" \ -in "sample.msi" -out "test_383_signed.msi" ../../osslsigncode add \ -ts http://time.certum.pl/ \ -ts http://timestamp.digicert.com/ \ -verbose \ -in "test_383_signed.msi" -out "test_383.msi" verify_signature "$?" "383" "msi" "success" "@2019-09-01 12:00:00" \ "UNUSED_PATTERN" "ASCII" "Timestamp Server Signature" "UNUSED_PATTERN" test_result "$?" "$test_name" else printf "Test skipped\n" fi # CAT file test_name="384. Add RFC 3161 timestamp to signed CAT file" printf "\n%s\n" "$test_name" if test -s "good.cat" && ! 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" \ -in "good.cat" -out "test_384_signed.cat" ../../osslsigncode add \ -ts http://time.certum.pl/ \ -ts http://timestamp.digicert.com/ \ -verbose \ -in "test_384_signed.cat" -out "test_384.cat" verify_signature "$?" "384" "cat" "success" "@2019-09-01 12:00:00" \ "UNUSED_PATTERN" "ASCII" "Timestamp Server Signature" "UNUSED_PATTERN" test_result "$?" "$test_name" else printf "Test skipped\n" fi exit 0