I need to serialize a DataSet in encrypted format

  • Thread starter Thread starter Bill
  • Start date Start date
B

Bill

Due to security reasons, I need to persist DataSet's as encrypted files on
Tablet PC's. Does anyone know of some useful information on how to do this?
(Or should I use MSDE instead?)
 
Bill:

Once you serialize it, you are dealing with pure text. You can do anything
from there....you can read the whole file in as a string or multiple ones
and then encrypt them as you see fit, hash them or whatever. If you check
out the Encryption class on google there are tons of examples and onceyou
have the text, you are good to go.

HTH,

Bill
 
Back
Top