-
Notifications
You must be signed in to change notification settings - Fork 566
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Cannot find DotNetUtilities in BouncyCastle.NetCore #113
Comments
Is there actually a solution? How to do: |
It's not clear what version of the library you are using. It should be in Org.BouncyCastle.Security namespace. Possibly DotNetUtilities is missing because it has been compiled with one of the flags that disables it: I suggest copying the method(s) you need from the source code: Of course, you may find some of the methods won't compile/work (which would explain why it's missing in your platform/version), in which case you may need to find an alternative way to convert b/w BC and .NET types. |
After installing BouncyCastle.NetCore v1.8.2 from NuGet I'm getting this: The library is referenced correctly: [EDIT] |
To anyone else who lands here like I did -- the issue is that |
It would be great if the repo owners chimed on this issue. 😕 |
Yeah, that would help. Because now that I'm using Portable.BouncyCastle, the class is present, but it's not actually working on non-Windows platforms, as it's relying on the
After I collect more information (and verify that I'm not crazy), I will open a separate issue for this. |
@johnhargrove Thank you very much for this! Sad that 17 days have passed, but your new issue isn't addressed. |
Sorry, but we're snowed under with TLS 1.3. |
I'm struggling to leverage numerous published code sample in a .Net Core Web App.
For example creating a
RSQCryptoServiceProvider
form a raw PEM string.The reason is that I cannot find (like this person also posted about) any hint of the
DotNetUtilities
class.Can anyone suggest anything?
The text was updated successfully, but these errors were encountered: