mirror of
https://github.com/mtrojnar/osslsigncode.git
synced 2025-04-05 01:00:11 -05:00
77 lines
2.5 KiB
Bash
77 lines
2.5 KiB
Bash
#!/bin/sh
|
|
# Sign a PE/CAB/MSI file with the certificate file in the SPC format
|
|
# and the private key file in the Microsoft Private Key (PVK) format.
|
|
|
|
. $(dirname $0)/../test_library
|
|
script_path=$(pwd)
|
|
|
|
# PE file
|
|
test_name="041. Sign a PE file a SPC certificate file and a PVK private key file"
|
|
printf "\n%s\n" "$test_name"
|
|
if test -s "test.exe"
|
|
then
|
|
../../osslsigncode sign -h sha256 \
|
|
-st "1556668800" \
|
|
-spc "${script_path}/../certs/cert.spc" -key "${script_path}/../certs/key.pvk" \
|
|
-pass passme \
|
|
-in "test.exe" -out "test_041.exe"
|
|
verify_signature "$?" "041" "exe" "success" "@2019-09-01 12:00:00" \
|
|
"sha256sum" "ASCII" "osslsigncode" "UNUSED_PATTERN"
|
|
test_result "$?" "$test_name"
|
|
else
|
|
printf "Test skipped\n"
|
|
fi
|
|
|
|
# CAB file
|
|
test_name="042. Sign a CAB file a SPC certificate file and a PVK private key file"
|
|
printf "\n%s\n" "$test_name"
|
|
if test -s "test.ex_"
|
|
then
|
|
../../osslsigncode sign -h sha256 \
|
|
-st "1556668800" \
|
|
-spc "${script_path}/../certs/cert.spc" -key "${script_path}/../certs/key.pvk" \
|
|
-pass passme \
|
|
-in "test.ex_" -out "test_042.ex_"
|
|
verify_signature "$?" "042" "ex_" "success" "@2019-09-01 12:00:00" \
|
|
"sha256sum" "ASCII" "osslsigncode" "UNUSED_PATTERN"
|
|
test_result "$?" "$test_name"
|
|
else
|
|
printf "Test skipped\n"
|
|
fi
|
|
|
|
# MSI file
|
|
test_name="043. Sign a MSI file a SPC certificate file and a PVK private key file"
|
|
printf "\n%s\n" "$test_name"
|
|
if test -s "sample.msi"
|
|
then
|
|
../../osslsigncode sign -h sha256 \
|
|
-st "1556668800" \
|
|
-spc "${script_path}/../certs/cert.spc" -key "${script_path}/../certs/key.pvk" \
|
|
-pass passme \
|
|
-in "sample.msi" -out "test_043.msi"
|
|
verify_signature "$?" "043" "msi" "success" "@2019-09-01 12:00:00" \
|
|
"sha256sum" "ASCII" "osslsigncode" "UNUSED_PATTERN"
|
|
test_result "$?" "$test_name"
|
|
else
|
|
printf "Test skipped\n"
|
|
fi
|
|
|
|
# CAT file
|
|
test_name="044. Sign a CAT file a SPC certificate file and a PVK private key file"
|
|
printf "\n%s\n" "$test_name"
|
|
if test -s "good.cat"
|
|
then
|
|
../../osslsigncode sign -h sha256 \
|
|
-st "1556668800" \
|
|
-spc "${script_path}/../certs/cert.spc" -key "${script_path}/../certs/key.pvk" \
|
|
-pass passme \
|
|
-in "good.cat" -out "test_044.cat"
|
|
verify_signature "$?" "044" "cat" "success" "@2019-09-01 12:00:00" \
|
|
"sha256sum" "ASCII" "osslsigncode" "UNUSED_PATTERN"
|
|
test_result "$?" "$test_name"
|
|
else
|
|
printf "Test skipped\n"
|
|
fi
|
|
|
|
exit 0
|