bc-csharp
bc-csharp copied to clipboard
BouncyCastle.NET Cryptography Library (Mirror)
Good evening, I'm porting a .NET Framework library that uses BouncyCastle to .NET Standard, and I'm using the `Portable.BouncyCastle` nuget package for this. I'm running into an issue where our...
`CMSSignedDataGenerator` Generate `CmsProcessableInputStream` with encapsulate `true` always throw InvalidOperationException("CmsProcessableInputStream can only be used once") because it calls `content.Write` twice. https://github.com/bcgit/bc-csharp/blob/master/crypto/src/cms/CMSSignedDataGenerator.cs#L132 https://github.com/bcgit/bc-csharp/blob/master/crypto/src/cms/CMSSignedDataGenerator.cs#L539
Need help for developing code in C# for producing keys from string
Following apple SKADNetwork I've generated private key and public key with this command ``` openssl ecparam -name prime192v1 -genkey -noout -out private_key.pem openssl ec -in private_key.pem -pubout -out public_key.pem ```...
The Bouncy Castle .Net FIPS assembly (bc-fips-1.0.1.dll) is not strong name signed. This makes it impossible to use with signed assemblies. Normally you would be able to sign a DLL...
Firstly, thanks for maintaining this library. A lot of open source .NET projects, including mine, would suffer without it. I noticed the Java Bouncy Castle version has support for [curve25519](https://github.com/bcgit/bc-java/blob/bc3b92f1f0e78b82e2584c5fb4b226a13e7f8b3b/tls/src/main/java/org/bouncycastle/tls/NamedGroup.java#L53)...
I'm using BC to sign documents where certificates are stored in an USB token. Natively, the BC can't read because private keys aren't exportable. I found in web a custom...
Hi All, I want to download some files on Windows 7 & 8.1 using cipher suites which are not available by default on Win 7 & 8.1 I am using...
Hello, if I understand it correctly, this is the official repository for http://www.bouncycastle.org/csharp/ project, right? I would like you to state what is the official NuGet package for this project....
* Change the size of the `record` buffer in `DtlsRecordLayer.Receive` to be able to hold the actual record. Before, it was sized to fit the decrypted plaintext plus the header,...