mirror of
https://github.com/mtrojnar/osslsigncode.git
synced 2025-07-03 11:42:47 -05:00
APPX support (#303)
Co-authored-by: Maciej Panek <Maciej.panek@punxworks.com> Co-authored-by: olszomal <Malgorzata.Olszowka@stunnel.org>
This commit is contained in:
@ -2571,6 +2571,8 @@ static int check_attached_data(GLOBAL_OPTIONS *options)
|
||||
ctx = file_format_pe.ctx_new(tmp_options, NULL, NULL);
|
||||
if (!ctx)
|
||||
ctx = file_format_cab.ctx_new(tmp_options, NULL, NULL);
|
||||
if (!ctx)
|
||||
ctx = file_format_appx.ctx_new(tmp_options, NULL, NULL);
|
||||
if (!ctx)
|
||||
ctx = file_format_cat.ctx_new(tmp_options, NULL, NULL);
|
||||
if (!ctx) {
|
||||
@ -3994,6 +3996,8 @@ int main(int argc, char **argv)
|
||||
ctx = file_format_pe.ctx_new(&options, hash, outdata);
|
||||
if (!ctx)
|
||||
ctx = file_format_cab.ctx_new(&options, hash, outdata);
|
||||
if (!ctx)
|
||||
ctx = file_format_appx.ctx_new(&options, hash, outdata);
|
||||
if (!ctx)
|
||||
ctx = file_format_cat.ctx_new(&options, hash, outdata);
|
||||
if (!ctx) {
|
||||
|
Reference in New Issue
Block a user