decrypting data

S

shank

Our webhost has products from Dynu installed. One of those products is the
Encrypt component. I can encrypt field data using ASP on their server - no
problem. However, I would like to download the encrypted data to my desktop
and decrypt it in MS Access. Has anyone done something like this? Is it
possible? I know very little about writing a module or functions. This is
the VB code to decrypt on their server. Can it be manipulated to work
locally?
thanks!

Set oEncryptor = CreateObject("Dynu.Encrypt")
Dim sDecrypted As String

sDecrypted = oEncryptor.DeCrypt(sEncrypted, "somepassword")
Set oEncrypt = Nothing
 
D

Douglas J. Steele

That should work as is, assuming you've installed the Dynu products on your
workstation.
 
Top