Link to home
Start Free TrialLog in
Avatar of enigmedia
enigmedia

asked on

Need a Windows Crypto API (advapi) based en-de component to run under classic ASP

Hello all,
I'm looking to do password based en-decryption on text strings in a classic ASP/VBScript environment. It's gotta use the Windows Crypto API. Something that will work like this:

myObject = Server.CreateObject("some.component")
pt = "Hellow world"
pw = "007"
ct = myObject.encrypt(pt,pw)
pt = myObject.decrypt(ct,pw)

I'll take VB code and wrap it myself or a compiled dll ready to register on the server. 500 points cause I need it yesterday!!!

Thanks,
ak
ASKER CERTIFIED SOLUTION
Avatar of SweatCoder
SweatCoder
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
I will email the full code.