Skip to content

Commit

Permalink
Added MSP and EFI as signable extensions.
Browse files Browse the repository at this point in the history
  • Loading branch information
lazyhamster committed Apr 15, 2023
1 parent bb1fe21 commit 37d332d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/trust.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

bool FileCanHaveSignature(const wchar_t* path)
{
static const wchar_t* SignatureExtensions[] = { L".exe", L".dll", L".msi", L".msu", L".cab"};
static const wchar_t* SignatureExtensions[] = { L".exe", L".dll", L".efi", L".msi", L".msu", L".msp", L".cab"};

const wchar_t* ext = PathFindExtension(path);
for (int i = 0; i < _countof(SignatureExtensions); ++i)
Expand Down

0 comments on commit 37d332d

Please sign in to comment.