Blowfish support in 1.1?

D

Derrick

Has anyone been able to get blowfish decryption working from C#, in 1.1?

I found sourcecode for 2.0, but there is enough 2.0 specific code in there
that I'm trying to find a 1.1 library.

Thanks in advance!

Derrick
 
J

Jani Järvinen [MVP]

Hi Derrick,
Has anyone been able to get blowfish decryption working from C#, in 1.1?
I found sourcecode for 2.0, but there is enough 2.0 specific code in there
that I'm trying to find a 1.1 library.

I'm not aware of a library for .NET 1.1, but the official place to download
source code is at:

http://www.schneier.com/blowfish-download.html

From there, I could find the C# 2.0 implementation:

http://www.hotpixel.net/bfnet200.zip

I very briefly checked this file, and noticed that the basic Blowfish
implementation files (BlowfishECB.cs and BlowfishCBC.cs) don't appear to use
many C# or .NET 2.0 related features. Thus, with little work I think you
could create classes that are .NET 1.1 compatible.

Hope this helps!

--
Regards,

Mr. Jani Järvinen
C# MVP
Helsinki, Finland
(e-mail address removed)
http://www.saunalahti.fi/janij/
 
?

=?ISO-8859-1?Q?Arne_Vajh=F8j?=

Derrick said:
Has anyone been able to get blowfish decryption working from C#, in 1.1?

I found sourcecode for 2.0, but there is enough 2.0 specific code in there
that I'm trying to find a 1.1 library.

http://www.bouncycastle.org/csharp/ support .NET 1.1 out of the box
and has almost any encryption/decryption algorithm (including Blowfish).

Arne
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top