-
Notifications
You must be signed in to change notification settings - Fork 4.8k
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
Make DSA.Create, AesCcm, AesGcm, ChaCha20Poly1305 throw PNSE on iOS #52978
Conversation
Tagging subscribers to this area: @bartonjs, @vcsjones, @krwq, @GrabYourPitchforks Issue Details
|
public static new DSA Create() | ||
{ | ||
return CreateCore(); | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The indirection is necessary because of the UnsupportedOSPlatform
attributes which would otherwise have to be in 5 different places.
Fixes #52758
Fixes #51332
Fixes #51331
Fixes #51330
Fixes #51370
This PR re-enables all System.Security.Cryptography.* tests to ensure sufficient coverage of the change.