views:

232

answers:

2

I am working on a project where I need to undertake Blowfish encryption and decryption. Is there anything out there that others are using to do this within but cannot find anything within a .NET C# environment?

I would ideally like something does not rely on running an exe as this will eventually live on a live server where exe’s are bared!

I have read some of the older posts on SO but nothing suitable.

Any ideas? Thanks

+3  A: 

You can find a c# implementation of the blowfish algorithm here.

ntziolis
+3  A: 

Try to look at http://www.bouncycastle.org/csharp/

It's an open source project (MIT License to be precise) that gives APIs for encryption, including BlowFish

digEmAll