CryptoManager is the main AspEncrypt object which
is creatable via the CreateObject or New statement. This
object serves as an "object factory" for the other AspEncrypt objects
To create an instance of the CryptoManager object in a VB environment,
open your VB project, select References... from the Project menu,
check the box next to Persits Software AspEncrypt 1.0 in the References dialog, then click OK.
You can now declare a CryptoManager object variable as follows:
Dim CM As CryptoManager
Create an instance of the CryptoManager object as follows:
Set CM = New CryptoManager
In the ASP environment,
you may create an instance of the CryptoManager object with ASP script, as follows:
<%
Set CM = Server.CreateObject("Persits.CryptoManager")
...
%>
You may also use the HTML OBJECT tag, as follows:
<OBJECT RUNAT="Server" ID="CM" PROGID="Persits.CryptoManager">
</OBJECT>