ASPCrypt
Back to FAQs
ASPCrypt emulates a Unix one-way encryption hash.
Sample Code
<%
Set Cryptor = Server.CreateObject ("AspCrypt.Crypt")
strSalt = "a"
strValue = "Widgets"
Response.Write "The crypted valued is " & Cryptor.Crypt (strSalt, strValue)
Set Cryptor = nothing
%>
|