Re: Encrypting Data
From: Fabio Cozzolino [MCAD] (cozzolino.fabio_at_gmail.com)
Date: 02/07/05
- Next message: Nicole Calinoiu: "Re: Protecting assemblies from being used outside a company/group/team"
- Previous message: Jason Duckers: "Re: (.NET) Which block size to choose?"
- In reply to: Brian P. Hammer: "Re: Encrypting Data"
- Next in thread: Brian P. Hammer: "Re: Encrypting Data"
- Reply: Brian P. Hammer: "Re: Encrypting Data"
- Reply: Morten Dahl: "Re: Encrypting Data"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ] [ attachment ]
Date: 7 Feb 2005 02:46:10 -0800
Hi Brian,
you can encrypt the important information by using classes in
System.Security.Cryptography namespace. If there are large data, you
can use symmetric algorithms, for example Rijndael, with unique secret
key for encrypt/decrypt. Note that is most important to protect key,
more than the type of used algorithm. I suggest you the use of
asymmetric algorithm for to protect symmetric algorithm's secret key.
you can start here:
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpguide/html/cpconCryptographicServices.asp
HTH
- Next message: Nicole Calinoiu: "Re: Protecting assemblies from being used outside a company/group/team"
- Previous message: Jason Duckers: "Re: (.NET) Which block size to choose?"
- In reply to: Brian P. Hammer: "Re: Encrypting Data"
- Next in thread: Brian P. Hammer: "Re: Encrypting Data"
- Reply: Brian P. Hammer: "Re: Encrypting Data"
- Reply: Morten Dahl: "Re: Encrypting Data"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ] [ attachment ]
Relevant Pages
|