osslsigncode/tests/recipes/23_sign_hash_sha2
2019-07-13 11:41:03 +02:00

27 lines
686 B
Bash

#!/bin/sh
# Signing a PE file with sha2 set of cryptographic hash functions.
. $(dirname $0)/../test_library
# PE file
test_name="231. Signing a PE file with sha2 set of cryptographic hash functions"
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 sha2 \
-certs "${script_path}/../certs/cert.pem" -key "${script_path}/../certs/key.pem" \
-in "test.exe" -out "test_231.exe"'
verify_signature "$?" "231" "exe" "UNUSED_PATTERN"
test_result "$?" "$test_name"
else
printf "Test skipped\n"
fi
# CAB file
# MSI file
exit 0