What i meant was, some of the fields in the table, the data are in encrypted format.
I want this data to be decrypted.
I was told that it can be done thru Visual Basic.
If VB (or any other language) could just automatically decrypt encrypted data then there would be little point in doing the encryption.
Most encryption schemes require an encryption/decryption password that must be supplied to encrypt the data and the same password is required to decrypt it. They also have an encryption algorithm which may be developed by the original programmer or it may be a commercial encryption scheme.
You therefore need both the algorithm (in whatever language you are using) and the password to perform a decryption of the data.
If you're lucky then the data has been "encrypted" by simply shifting the ASCII characters. If so you should start by searching your database's code for the ASC() and CHR() functions as there's a good chance the encryption (such as it is) has been implemented in VBA.
Failing that you need to find the code that writes the data to the table and work back from there. I'd be searching for the name of the table in your modules...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.