Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where is the Bouncy Castle API documentation?

I need to do some cryptography based work, and I have found out Bouncy Castle API which is both available for C# and Java, for Java it has documentation, but it has no documentation for C#.

Can anyone provide me some resources from where I can get idea for using Bouncy Castle with C#?

like image 848
habibalsaki Avatar asked Sep 04 '25 01:09

habibalsaki


1 Answers

I also couldn't find any C#-documentation for Bouncy Castle API. Seems, like it doesn't exist.

But you can go this way. Download library sources, and look at them a little. Code actually looks like Java-code, but it has minimal differences:

  1. Some base classes moved to interfaces
  2. All the methods and properties are named in 'UpperCamelCase'

Therefore you can freely use Java-documentation. And finally, some example for it usage in C#.

Also, want to add, answer for this question really helps me in one time.

like image 64
Shad Avatar answered Sep 06 '25 15:09

Shad