Back to product page
Getting Started in ASP
Working with the COM object
In order to insert the wodCrypt COM object into your project, follow these steps:- Install the component on your system by starting its setup program.
- Go to Inetpub/wwwroot folder and create a new ASP page or open an existing one.
- Add code similar to this in order to initialize wodCryptCom
<%
dim Crypt
set Crypt = Server.CreateObject("WeOnlyDo.wodCryptCom.1")
- If you have the licensed version of the product, set the LicenseKey property
Crypt.LicenseKey = "xxxx...xxxx"
- Set other properties, then do the encryption/decryption
Crypto.Optimized = 0
Crypto.SecretKey = "your-passphrase"
...
Crypto.Encrypt DecryptedBlob, EncryptedBlob
%>
- If an error occurs, you should convert the hexadecimal representation of the error to decimal so that you can locate the error in our list. For example:
Error Type:
IIS reported error 0x800A9C3F. You should use only 9C3F, when converted to decimal it is 39999 - License Key missing error.
WeOnlyDo.wodCryptCom.1 (0x800A9C3F)
License key missing. You can not use this component in design environment.
/Crypt.asp, line 9 - Important: If you use the trial version of our product, you will always receive the above error. wodCrypt needs to access the registry in order to validate the trial license. This is because IIS is running under IUSR_COMPUTER account and does not have access to the registry, you must change IIS privileges and force it to run as Administrator.
To change IIS privileges, go to Start->Settings->Control Panel->Administrative Tools->Internet Services Manager. Here you will find 'Default Web Site', right-click on it, select 'Properties'. Go to the 'Directory Security' tab, at the top is the 'Anonymous access and authentication control' frame, and an 'Edit' button. Click on 'Edit' button. The 'Authentication Methods' dialog box appears, click the 'Edit' button to see the 'Account used for anonymous access' dialog.
Here you should enter Username: 'Administrator', and for Password: put the administrator account password. Click on 'Ok' to close all windows, and wodCrypt should now run
Once again: do not do this on a production server, only in test and firewalled environments.