Next we create an ABCCrypto Crypto object and ask it to decrypt
the file using the password we provided as a key.
Set theCrypto =
Server.CreateObject("ABCCrypto2.Crypto")
theCrypto.License = "30-day-trial"
theCrypto.Password = thePass
theCrypto.DecryptFile(theInPath, theOutPath)
|