Dyncrypto - ASP

0

I have a website that was on a server and has now moved on to a new one. It has a code snippet where it uses the Dyncrypto component

Set DynCrypto = server.CreateObject("DynCrypto.Crypto")

I installed the component on the new server and passed that line of code. On reaching this line:

PublicKey = DynCrypto.AsymPublicKey(PrivateKey)

It gives 500 error. I have found that it gives problem because it does not have the license.

Does anyone know how to install this license? I asked for a test for 30 days but I can not register it.

    
asked by anonymous 01.12.2017 / 19:42

1 answer

0

License Installation

A license has two information: "Owner" and "Key". This information should be stored in a file called LICENSE.INI, located in the folder where the DYNCRYPTO.DLL file is located.

1) Open Notepad

2) Copy and paste the following text into Notepad by changing the license information ( Owner and Key ) as appropriate:

--- begin of  file ---

[License] 

Owner = 30 Days Evaluation
Key = KKkNLxYEj6VXd1WEF9+fvrXA4yAPvtpz7vSHFWnGNn8=

--- end of file ---

3) Save the file named LICENSE.INI to the same folder where the DYNCRYPTO.DLL file is located

More information can be found in developer manual .

    
03.12.2017 / 02:46