bc-csharp
bc-csharp copied to clipboard
BouncyCastle.NET Cryptography Library (Mirror)
I am writing an Azure Function to decrypt a previously encrypted file stored in an Azure Blob. Ideally, I would like to use the OpenWrite/Read methods on BlobBlockClient in order...
I really needed to get this running for testing purposes, so I have done a first cut of an implementation. At this point I know there are server things that...
There are algorithms for hierarchical deterministic key generation for the Ed22219 curve (e.g. [BIP32-Ed25519](https://ieeexplore.ieee.org/document/7966967)). These algorithms use extended keys, which are obtained at the first step after calculation the digest...
I'm trying to generate a certificate self-signed by a KeyPair stored in **Azure KeyVault** (HSM). No matter what I tried, I get "invalid signature" error. **Generating the certificate parameters:** ```...
I'm writing a certificate authority using the Bouncy Castle library. I have an external service that signs the TBS certificate. I need to join the TBS certificate, signature and algorithm...
PkixCertPathValidator does not validate against PkixParameters.Date when `PkixParameters.ValidityModel == ChainValidityModel`. In fact, any processing where the date can be set is completely commented out. This appears to follow the Java...
The comment for Org.BouncyCastle.Pkix.PkixCertPath says: ``` * By convention, X.509 CertPaths (consisting of X509Certificates), are ordered * starting with the target certificate and ending with a certificate issued by *...
Hi All, While working on client using bouncy castle in C# I run into exactly same problem as was reported for Java version 2 years ago Issue: `IllegalArgumentException("unknown HashAlgorithm")` when...
I have a pem file that contains explanatory text before the `BEGIN` and this is causing `PemReader.ReadObject()` to fail. Here is an example: ``` subject=... -----BEGIN CERTIFICATE----- .... -----END CERTIFICATE-----...