vote up 0 vote down star
1

Does anyone have any examples of how to encrypt serialized data to a file and then read it back using DES?

I've written some code already that isn't working, but I'd rather see a fresh attempt instead of pursuing my code.

EDIT: Sorry, forgot to mention I need an example using XmlSerializer.Serialize/Deserialize.

flag

By the way, I'm using the CF, so memory is a constraint. – GenericTypeTea Jun 8 at 13:58
Can you elaborate? Do you want to encrypt something and then serialize it to the XML format, or do you want to encrypt the serialized data? – Yacoder Jun 8 at 14:16
Whichever is less time consuming. I've got a collection of customer information that needs to be encrypted to a file. The way I saw it working was to serialize through a cryptostream to a file (which works) and then deserialize through a cryptostream from a file (which doesn't work). – GenericTypeTea Jun 8 at 14:21

2 Answers

vote up 3 vote down check

Encryption

public static void EncryptAndSerialize(string filename, MyObject obj, SymmetricAlgorithm key)
{
    using(FileStream fs = File.Open(filename, FileMode.Create))
    {
        using(Cryptostream cs = new CryptoStream(fs, key.CreateEncryptor(), CryptoStreamMode.Write))
        {
            XmlSerializer xmlser = new XmlSerializer(typeof(MyObject));
            xmlser.Serialize(cs, obj); 
        }
    }
}

Decryption:

public static MyObject DecryptAndDeserialize(string filename, SymmetricAlgorithm key)    
{
    using(FileStream fs = File.Open(filename, FileMode.Open))
    {
        using(Cryptostream cs = new CryptoStream(fs, key.CreateDecryptor(), CryptoStreamMode.Read))
        {
            XmlSerializer xmlser = new XmlSerializer(typeof(MyObject));
            return (MyObject) xmlser.Deserialize(cs);
        }
    }
}

Usage:

DESCryptoServiceProvider key = new DESCryptoServiceProvider();
MyObject obj = new MyObject();
EncryptAndSerialize("testfile.xml", obj, key);
MyObject deobj = DecryptAndDeserialize("testfile.xml", key);

You need to change MyObject to whatever the type of your object is that you are serializing, but this is the general idea. The trick is to use the same SymmetricAlgorithm instance to encrypt and decrypt.

link|flag
Looks like we posted about the same time, I'll accept as it's near enough what I actually wanted! Thanks Bryce. – GenericTypeTea Jun 8 at 14:38
vote up 0 vote down

Here is an example of DES encryption/decription for a string.

link|flag
Sorry, I need an example using XmlSerializer. I'll amend the main question. – GenericTypeTea Jun 8 at 14:10

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.