>Greetings,
>
>We are currently using Mike Shaffer's RC4 Stream Encryption algorithm in
>classic ASP to encrypt cookie data.  With the need to run classic ASP and
>ASP.NET at the same time, we would like to use the same encryption
>algorithm.
>
>I don't see that the framework has RC4 built in.  Since I don't know a
whole
>lot about encryption, might someone be able to tell me if there is another
>alternative that exists in the framework that I'm missing?  Or by chance
>does anyone have an RC4 algorithm they want to share?
>
>Thanks,

If you already have the algorithm implemented in ASP, you should be able
to port it over to .NET fairly quickly.  Also, check out the following
sites:

http://www.ncat.edu/~grogans/algorithm_breakdown.htm
http://www.4guysfromrolla.com/webtech/010100-1.shtml

"Applied Cryptography" also contains a description of RC4.  It's pretty
easy to code - doing it .NET shouldn't take much time.  You could also do
P/Invokes to the CryptoAPI as it contains an implementation of RC4.

Regards,

Jason

You can read messages from the DOTNET archive, unsubscribe from DOTNET, or
subscribe to other DevelopMentor lists at http://discuss.develop.com.

Reply via email to