mirror of
https://github.com/mtrojnar/osslsigncode.git
synced 2025-04-05 09:08:04 -05:00
Fixed "add" tests
The "add" command was never supposed to copy a signature.
See afd5c5177d
for details.
This commit is contained in:
parent
1121713d48
commit
f39ac9caee
@ -1,47 +0,0 @@
|
||||
#!/bin/sh
|
||||
# Moving the authenticode signing to the PE/MSI file.
|
||||
|
||||
. $(dirname $0)/../test_library
|
||||
|
||||
# PE file
|
||||
test_name="341. Moving the authenticode signing to the PE file"
|
||||
printf "\n%s\n" "$test_name"
|
||||
if [ -s "test.exe" ]
|
||||
then
|
||||
cp "test.exe" "test_341.exe"
|
||||
faketime -f '@2019-01-01 00:00:00' /bin/bash -c '
|
||||
script_path=$(pwd)
|
||||
../../osslsigncode sign -h sha256 \
|
||||
-certs "${script_path}/../certs/cert.pem" -key "${script_path}/../certs/key.pem" \
|
||||
-in "test.exe" -out "test_341_signed.exe" && \
|
||||
../../osslsigncode add \
|
||||
-in "test_341_signed.exe" -out "test_341.exe"'
|
||||
verify_signature "$?" "341" "exe" "UNUSED_PATTERN" "sha256sum" "ASCII" "osslsigncode" "UNUSED_PATTERN"
|
||||
test_result "$?" "$test_name"
|
||||
else
|
||||
printf "Test skipped\n"
|
||||
fi
|
||||
|
||||
# CAB file
|
||||
# Command is not supported for non-PE
|
||||
|
||||
# MSI file
|
||||
test_name="342. Moving the authenticode signing to the MSI file"
|
||||
printf "\n%s\n" "$test_name"
|
||||
if [ -s "sample.msi" ]
|
||||
then
|
||||
cp "sample.msi" "test_342.msi"
|
||||
faketime -f '@2019-01-01 00:00:00' /bin/bash -c '
|
||||
script_path=$(pwd)
|
||||
../../osslsigncode sign -h sha256 \
|
||||
-certs "${script_path}/../certs/cert.pem" -key "${script_path}/../certs/key.pem" \
|
||||
-in "sample.msi" -out "test_342_signed.msi" && \
|
||||
../../osslsigncode add \
|
||||
-in "test_342_signed.msi" -out "test_342.msi"'
|
||||
verify_signature "$?" "342" "msi" "UNUSED_PATTERN" "sha256sum" "ASCII" "osslsigncode" "UNUSED_PATTERN"
|
||||
test_result "$?" "$test_name"
|
||||
else
|
||||
printf "Test skipped\n"
|
||||
fi
|
||||
|
||||
exit 0
|
@ -1,14 +1,13 @@
|
||||
#!/bin/sh
|
||||
# Moving the authenticode signing with addUnauthenticatedBlob to the PE/MSI file.
|
||||
# Adding an unauthenticated blob to the PE/MSI file.
|
||||
|
||||
. $(dirname $0)/../test_library
|
||||
|
||||
# PE file
|
||||
test_name="361. Moving the authenticode signing with addUnauthenticatedBlob to the PE file"
|
||||
test_name="361. Adding an unauthenticated blob to the PE file"
|
||||
printf "\n%s\n" "$test_name"
|
||||
if [ -s "test.exe" ]
|
||||
then
|
||||
cat "test.exe" > "test_361.exe"
|
||||
faketime -f '@2019-01-01 00:00:00' /bin/bash -c '
|
||||
script_path=$(pwd)
|
||||
../../osslsigncode sign -h sha256 \
|
||||
@ -27,7 +26,7 @@ if [ -s "test.exe" ]
|
||||
# Command is not supported for non-PE
|
||||
|
||||
# MSI file
|
||||
test_name="362. Moving the authenticode signing with addUnauthenticatedBlob to the MSI file"
|
||||
test_name="362. Adding an unauthenticated blob to the MSI file"
|
||||
printf "\n%s\n" "$test_name"
|
||||
if [ -s "sample.msi" ]
|
||||
then
|
||||
|
@ -1,14 +1,13 @@
|
||||
#!/bin/sh
|
||||
# Moving the authenticode signing with Authenticode timestamping to the PE/MSI file.
|
||||
# Adding an authenticode timestamp to the PE/MSI file.
|
||||
|
||||
. $(dirname $0)/../test_library
|
||||
|
||||
# PE file
|
||||
test_name="371. Moving the authenticode signing with Authenticode timestamping to the PE file"
|
||||
test_name="371. Adding an authenticode timestamp to the PE file"
|
||||
printf "\n%s\n" "$test_name"
|
||||
if [ -s "test.exe" ]
|
||||
then
|
||||
cat "test.exe" > "test_371.exe"
|
||||
faketime -f '@2019-01-01 00:00:00' /bin/bash -c '
|
||||
script_path=$(pwd)
|
||||
../../osslsigncode sign -h sha256 \
|
||||
@ -27,7 +26,7 @@ if [ -s "test.exe" ]
|
||||
# Command is not supported for non-PE
|
||||
|
||||
# MSI file
|
||||
test_name="372. Moving the authenticode signing with Authenticode timestamping to the MSI file"
|
||||
test_name="372. Adding an authenticode timestamp to the MSI file"
|
||||
printf "\n%s\n" "$test_name"
|
||||
if [ -s "sample.msi" ]
|
||||
then
|
||||
|
@ -1,14 +1,13 @@
|
||||
#!/bin/sh
|
||||
# Moving the authenticode signing with RFC 3161 timestamping to the PE/MSI file.
|
||||
# Adding an RFC 3161 timestamp to the PE/MSI file.
|
||||
|
||||
. $(dirname $0)/../test_library
|
||||
|
||||
# PE file
|
||||
test_name="381. Moving the authenticode signing with RFC 3161 timestamping to the PE file"
|
||||
test_name="381. Adding an RFC 3161 timestamp to the PE file"
|
||||
printf "\n%s\n" "$test_name"
|
||||
if [ -s "test.exe" ]
|
||||
then
|
||||
cat "test.exe" > "test_381.exe"
|
||||
faketime -f '@2019-01-01 00:00:00' /bin/bash -c '
|
||||
script_path=$(pwd)
|
||||
../../osslsigncode sign -h sha256 \
|
||||
@ -27,7 +26,7 @@ if [ -s "test.exe" ]
|
||||
# Command is not supported for non-PE
|
||||
|
||||
# MSI file
|
||||
test_name="382. Moving the authenticode signing with RFC 3161 timestamping to the MSI file"
|
||||
test_name="382. Adding an RFC 3161 timestamp to the MSI file"
|
||||
printf "\n%s\n" "$test_name"
|
||||
if [ -s "sample.msi" ]
|
||||
then
|
||||
|
Loading…
x
Reference in New Issue
Block a user