mirror of
https://github.com/mtrojnar/osslsigncode.git
synced 2025-04-06 17:38:06 -05:00
77 lines
2.5 KiB
Bash
77 lines
2.5 KiB
Bash
#!/bin/sh
|
|
# Sign a PE/CAB/MSI file with addUnauthenticatedBlob.
|
|
|
|
. $(dirname $0)/../test_library
|
|
script_path=$(pwd)
|
|
|
|
# PE file
|
|
test_name="101. Sign a PE file with addUnauthenticatedBlob"
|
|
printf "\n%s\n" "$test_name"
|
|
if test -s "test.exe"
|
|
then
|
|
../../osslsigncode sign -h sha256 \
|
|
-st "1556668800" \
|
|
-addUnauthenticatedBlob \
|
|
-certs "${script_path}/../certs/cert.pem" -key "${script_path}/../certs/key.pem" \
|
|
-in "test.exe" -out "test_101.exe" 2>> "results.log" 1>&2
|
|
verify_signature "$?" "101" "exe" "success" "@2019-09-01 12:00:00" \
|
|
"UNUSED_PATTERN" "ASCII" "BEGIN_BLOB---" "MODIFY"
|
|
test_result "$?" "$test_name"
|
|
else
|
|
printf "Test skipped\n"
|
|
fi
|
|
|
|
# CAB file
|
|
test_name="102. Sign a CAB file with addUnauthenticatedBlob"
|
|
printf "\n%s\n" "$test_name"
|
|
if test -s "test.ex_"
|
|
then
|
|
../../osslsigncode sign -h sha256 \
|
|
-st "1556668800" \
|
|
-addUnauthenticatedBlob \
|
|
-certs "${script_path}/../certs/cert.pem" -key "${script_path}/../certs/key.pem" \
|
|
-in "test.ex_" -out "test_102.ex_" 2>> "results.log" 1>&2
|
|
verify_signature "$?" "102" "ex_" "success" "@2019-09-01 12:00:00" \
|
|
"UNUSED_PATTERN" "ASCII" "BEGIN_BLOB---" "MODIFY"
|
|
test_result "$?" "$test_name"
|
|
else
|
|
printf "Test skipped\n"
|
|
fi
|
|
|
|
# MSI file
|
|
test_name="103. Sign a MSI file with addUnauthenticatedBlob"
|
|
printf "\n%s\n" "$test_name"
|
|
if test -s "sample.msi"
|
|
then
|
|
../../osslsigncode sign -h sha256 \
|
|
-st "1556668800" \
|
|
-addUnauthenticatedBlob \
|
|
-certs "${script_path}/../certs/cert.pem" -key "${script_path}/../certs/key.pem" \
|
|
-in "sample.msi" -out "test_103.msi" 2>> "results.log" 1>&2
|
|
verify_signature "$?" "103" "msi" "success" "@2019-09-01 12:00:00" \
|
|
"UNUSED_PATTERN" "ASCII" "BEGIN_BLOB---" "MODIFY"
|
|
test_result "$?" "$test_name"
|
|
else
|
|
printf "Test skipped\n"
|
|
fi
|
|
|
|
# CAT file
|
|
# The message digest is checked by PKCS7_verify()
|
|
test_name="104. Sign a CAT file with addUnauthenticatedBlob"
|
|
printf "\n%s\n" "$test_name"
|
|
if test -s "good.cat"
|
|
then
|
|
../../osslsigncode sign -h sha256 \
|
|
-st "1556668800" \
|
|
-addUnauthenticatedBlob \
|
|
-certs "${script_path}/../certs/cert.pem" -key "${script_path}/../certs/key.pem" \
|
|
-in "good.cat" -out "test_104.cat" 2>> "results.log" 1>&2
|
|
verify_signature "$?" "104" "cat" "success" "@2019-09-01 12:00:00" \
|
|
"UNUSED_PATTERN" "ASCII" "UNUSED_PATTERN" "UNUSED_PATTERN"
|
|
test_result "$?" "$test_name"
|
|
else
|
|
printf "Test skipped\n"
|
|
fi
|
|
|
|
exit 0
|