soachishti
soachishti

Reputation: 342

Inno Setup encryption and password from remote

I am using Inno Setup to create installer for my pyinstaller based project. We wanted the user to enter password to continue with installation. For that we have place "CheckPassword" function to validate password from remote location.

Unfortunately the setup is not encrypted it can easily be extracted using innoextract or 7zip. Is it possible in Inno Setup to encrypt setup and using CheckPassword we verify custom password and return the actual encryption key from remote? or is there similar free software which does the job.

Upvotes: 1

Views: 896

Answers (1)

Martin Prikryl
Martin Prikryl

Reputation: 202360

Inno Setup installer can be encrypted.

See Encryption directive.

Upvotes: 1

Related Questions