views:

90

answers:

1

I'm trying to implement the Bouncy Castle encryption library in a .Net project, but am not finding a lot of .Net-related documentation. The class/method structure isn't even close to the ample Java-related examples.

Does anyone have some good .Net examples for this?

Thanks.

A: 

It the C# classes looks almost identical to the Java classes to me. One difference is that interfaces in C# follow the .NET convention and begin with the letter 'I'. For example, IBlockCipher is the C# analog to the Java BlockCipher, and ICipherParameters corresponds to Java CipherParameters. I would expect the Java examples to translate almost perfectly into C# examples. Is there a particular java example that you are having trouble translating to C#?

GregS