Page 1 of 1

Digital signatures

Posted: Fri Feb 03, 2012 6:46 pm
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.

Re: Digital signatures

Posted: Sun Feb 05, 2012 4:39 pm
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.

Re: Digital signatures

Posted: Sun Feb 05, 2012 9:17 pm
by navossoc
But its possible to embed this feature in the future versions?

Re: Digital signatures

Posted: Wed Feb 08, 2012 3:52 am
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.

Re: Digital signatures

Posted: Sun Feb 12, 2012 10:40 pm
by navossoc
Perfect! Thank you!