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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top