|
|
|
ASP/UnixCrypt is a server side COM component that allows web developers to encrypt the password.
It works exactly as crypt(key, salt) Unix command (one-way encryption algorithm).
|
This component is shareware version without limitations on functionality or time.You can fully develop and test your application before purchasing this product, the only limitation is component works when client requests from the IP 127.0.0.1 or ServerIP, No requests from other IP addresses will be served.
If you want to remove limitations then you have to register it for US$15.
ASP/UnixCrypt Component |
CH.2 |
Features |
- It works exactly as crypt(key, salt) Unix command.
- Fast and Easy-to-Use.
- Support ASP, PHP (COM class - Windows).
ASP/UnixCrypt Component |
CH.3 |
Installation |
- Unzip the ASPUnixCrypt.zip file extract to a directory.
- copy register.bat and nonnoi_ASPUnixCrypt.dll to the WINNT\SYSTEM32 (or WINDOWS\SYSTEM on Win95/98 or WINDOWS\SYSTEM32 on WinXP Home) directory
- run register.bat
- Done!
ASP/UnixCrypt Component |
CH.4 |
Reference |
Password
This is the string you want to encrypt. It's maximum lenght is 8 Chars.This Input string is case-sensitive.
Salt
The "Salt" is used for crypt function. It's maximum lenght is 2 Chars.
Output
This is now the encrypted password.
Crypt(Password,Salt) : Function
Alternative method to encrypt Password.
Parameters:
Password - The string you want to encrypt (max 8 chars).
Salt - Used for crypt function (2 chars).
Result - encrypted password.
RegisterName
if you already registered this product, input your name (company name or customer name) here.
** you must set this value before call Crypt or Output.
RegisterKey
if you already registered this product, input your registration key here.
** you must set this value before call Crypt or Output.
ASP/UnixCrypt Component |
CH.5 |
Example |
ASP :
<%
Set Obj = Server.CreateObject("nonnoi_ASPUnixCrypt.ASPUnixCrypt")
Obj.Password = Request("Password")
Obj.Salt = Request("Salt")
Response.write (Obj.Output)
set Obj = nothing
%>
ASP :
<%
Set Obj = Server.CreateObject("nonnoi_ASPUnixCrypt.ASPUnixCrypt")
Output = Obj.Crypt(Request("Password"), Request("Salt"))
Response.write Output
set Obj = nothing
%>
ASP (Registered User):
<%
Set Obj = Server.CreateObject("nonnoi_ASPUnixCrypt.ASPUnixCrypt")
Obj.RegisterName = "Nonnoi"
Obj.RegisterKey = "0123456-789"
Obj.Password = Request("Password")
Obj.Salt = Request("Salt")
Response.write (Obj.Output)
set Obj = nothing
%>
ASP/UnixCrypt Component |
CH.6 |
Update & Order |
Click here for prices and discount information.
Click here for product news & information.
Click here for product support or any comment.