How to save the registration data to a crypto device such as SmartDongle.
It is possible to extend the application to program your own store registration data?
thx Aargh
Feature request:registration data storage
Re: Feature request:registration data storage
Hi Aargh,
Yes, it is possible, everything is already made in Enigma Protector.
For manual storing of license information you have to use Enigma plugins system, there are callbacks of Key Load and Key Save routines:
Plugins SDK is available for Delphi, Free Pascal, C++, so you should not have problems with it.
Just create a plugin, handle these events, and store information anywhere you want!
Yes, it is possible, everything is already made in Enigma Protector.
For manual storing of license information you have to use Enigma plugins system, there are callbacks of Key Load and Key Save routines:
Code: Select all
function Enigma_Plugin_OnSaveKey(ARegName : pointer; ARegNameLen : integer; ARegKey : pointer; ARegKeyLen : integer) : boolean; stdcall;
function Enigma_Plugin_OnLoadKey(var ARegName : pointer; var ARegNameLen : integer; var ARegKey : pointer; var ARegKeyLen : integer) : boolean; stdcall;
Just create a plugin, handle these events, and store information anywhere you want!
Re: Feature request:registration data storage
Hi EnigmaEnigma wrote:Hi Aargh,
Yes, it is possible, everything is already made in Enigma Protector.
For manual storing of license information you have to use Enigma plugins system, there are callbacks of Key Load and Key Save routines:Plugins SDK is available for Delphi, Free Pascal, C++, so you should not have problems with it.Code: Select all
function Enigma_Plugin_OnSaveKey(ARegName : pointer; ARegNameLen : integer; ARegKey : pointer; ARegKeyLen : integer) : boolean; stdcall; function Enigma_Plugin_OnLoadKey(var ARegName : pointer; var ARegNameLen : integer; var ARegKey : pointer; var ARegKeyLen : integer) : boolean; stdcall;
Just create a plugin, handle these events, and store information anywhere you want!
Thank you for the kick in the right direction
Aargh
Re: Feature request:registration data storage
ok Aargh, glad to help, let me know if you will have any questions 
