Digital signatures

Issues related to VMProtect
Post Reply
navossoc
Posts: 6
Joined: Sun Jan 02, 2011 1:20 am

Digital signatures

Post by navossoc »

Is it possible to add an automatic way to digitally sign the output assembly in the next version, where you select the files and vmp outputs the already-signed executable/dll? Or just adding an user-friendly interface for setting options and vmp just call some external tool to sign the assembly.
Admin
Site Admin
Posts: 2586
Joined: Mon Aug 21, 2006 8:19 pm
Location: Russia, E-burg
Contact:

Re: Digital signatures

Post by Admin »

Unfortunately VMProtect has no such feature. We can recommend you to use BAT/CMD file and console version of VMProtect with execution of signtool in it.

Hope this help.
navossoc
Posts: 6
Joined: Sun Jan 02, 2011 1:20 am

Re: Digital signatures

Post by navossoc »

But its possible to embed this feature in the future versions?
Admin
Site Admin
Posts: 2586
Joined: Mon Aug 21, 2006 8:19 pm
Location: Russia, E-burg
Contact:

Re: Digital signatures

Post by Admin »

You can to use the VMProtect`s script for this:

Code: Select all

function WinExec(lpCmdLine: PChar; uCmdShow: Integer): Integer; external 'WinExec@kernel32.dll stdcall';

procedure OnAfterCompilation;
begin
  WinExec('signtool.exe .....', 1);
end;
Hope this help.
navossoc
Posts: 6
Joined: Sun Jan 02, 2011 1:20 am

Re: Digital signatures

Post by navossoc »

Perfect! Thank you!
Post Reply