Dear ram2098
I agree with angelIII; I was facing the same issue regarding data encryption; well I don't know if you are familiar with .NET. but a good scenario would be:
- create binary fields in SQL for the data to be encrypted.
- use .NET to encrypt the data before reading and writing; this way you secure the data even from the backend (SQL) and even if you query the binary fields from SQL using cast functions the data will not mean anything since its not decrypted.
Main Topics
Browse All Topics





by: angelIIIPosted on 2007-05-03 at 00:01:14ID: 19021432
sql 2000 only has a function to encrypt, which can be used for passwords (and compare encrypted values), but no function to decrypt.
you will need to use third-party components to do that, ie do the encryption on the client site (to avoid that unencrypted data is send over the network anyhow)