Where is the Bouncy Castle API documentation?

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

Can someone provide me some resources where can I get an idea of ​​using Bouncy Castle with C #?

+14
c # bouncycastle
source share
2 answers

I also could not find the C # -documentation for the Bouncy Castle API. It seems as if it does not exist.

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

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

Therefore, you are free to use Java-documentation. And finally, a few examples of its use in C # .

In addition, I want to add, the answer to this question will really help me at a time.

+11
source share

On the bouncyCastle website, I found a document to get started with a C # version matching FIPS.

It should be applicable to the non-FIPS version.

0
source share

All Articles