mirror of
https://github.com/mtrojnar/osslsigncode.git
synced 2025-04-05 09:08:04 -05:00
61 lines
2.1 KiB
Bash
61 lines
2.1 KiB
Bash
#!/bin/sh
|
|
# Add an additional certificate to the signature block of the PE/CAB/MSI file.
|
|
# https://docs.microsoft.com/en-us/windows-hardware/drivers/install/authenticode-signing-of-csps
|
|
# https://docs.microsoft.com/en-us/windows/win32/seccertenroll/about-cross-certification
|
|
|
|
. $(dirname $0)/../test_library
|
|
script_path=$(pwd)
|
|
|
|
# PE file
|
|
test_name="171. Add an additional certificate to the signature block of the PE file"
|
|
printf "\n%s\n" "$test_name"
|
|
if test -s "test.exe"
|
|
then
|
|
../../osslsigncode sign -h sha256 \
|
|
-st "1556668800" \
|
|
-certs "${script_path}/../certs/cert.pem" -key "${script_path}/../certs/key.pem" \
|
|
-ac "${script_path}/../certs/crosscert.pem" \
|
|
-in "test.exe" -out "test_171.exe"
|
|
verify_signature "$?" "171" "exe" "success" "@2019-09-01 12:00:00" \
|
|
"UNUSED_PATTERN" "ASCII" "crosscert" "UNUSED_PATTERN"
|
|
test_result "$?" "$test_name"
|
|
else
|
|
printf "Test skipped\n"
|
|
fi
|
|
|
|
# CAB file
|
|
test_name="172. Add an additional certificate to the signature block of the CAB file"
|
|
printf "\n%s\n" "$test_name"
|
|
if test -s "test.ex_"
|
|
then
|
|
../../osslsigncode sign -h sha256 \
|
|
-st "1556668800" \
|
|
-certs "${script_path}/../certs/cert.pem" -key "${script_path}/../certs/key.pem" \
|
|
-ac "${script_path}/../certs/crosscert.pem" \
|
|
-in "test.ex_" -out "test_172.ex_"
|
|
verify_signature "$?" "172" "ex_" "success" "@2019-09-01 12:00:00" \
|
|
"UNUSED_PATTERN" "ASCII" "crosscert" "UNUSED_PATTERN"
|
|
test_result "$?" "$test_name"
|
|
else
|
|
printf "Test skipped\n"
|
|
fi
|
|
|
|
# MSI file
|
|
test_name="173. Add an additional certificate to the signature block of the MSI file"
|
|
printf "\n%s\n" "$test_name"
|
|
if test -s "sample.msi"
|
|
then
|
|
../../osslsigncode sign -h sha256 \
|
|
-st "1556668800" \
|
|
-certs "${script_path}/../certs/cert.pem" -key "${script_path}/../certs/key.pem" \
|
|
-ac "${script_path}/../certs/crosscert.pem" \
|
|
-in "sample.msi" -out "test_173.msi"
|
|
verify_signature "$?" "173" "msi" "success" "@2019-09-01 12:00:00" \
|
|
"UNUSED_PATTERN" "ASCII" "crosscert" "UNUSED_PATTERN"
|
|
test_result "$?" "$test_name"
|
|
else
|
|
printf "Test skipped\n"
|
|
fi
|
|
|
|
exit 0
|