which OpenSSL version is used in bouncycastle library?

bouncycastle, openssl

Solution

BouncyCastle implement with java.

It doesn't need OpenSSL at all.

org.bouncycastle.openssl package in bcpkix is use to handle the PEM file generated by OpenSSL.

https://www.bouncycastle.org/docs/pkixdocs1.5on/org/bouncycastle/openssl/package-summary.html

Problem

I am using BouncyCastle Library for OpenSSL encryption in Android. My library version is 1.45. I would like to know the OpenSSL version is used in the library. Anybody can help me how could I find it out ?

Original source