Add breaking change documentation for OpenSSL cryptographic primitives on macOS #46924
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR adds documentation for the .NET 10 Preview 6 breaking change where OpenSSL cryptographic primitives are no longer supported on macOS.
Changes Made
New breaking change document:
docs/core/compatibility/cryptography/10.0/openssl-macos-unsupported.md
Updated index: Added entry to
docs/core/compatibility/10.0.md
in the Cryptography sectionUpdated TOC: Added navigation entry to
docs/core/compatibility/toc.yml
Affected APIs
The following APIs now throw
PlatformNotSupportedException
on macOS:System.Security.Cryptography.AesCcm
(all constructors)System.Security.Cryptography.DSAOpenSsl
(all constructors)System.Security.Cryptography.ECDiffieHellmanOpenSsl
(all constructors)System.Security.Cryptography.ECDsaOpenSsl
(all constructors)System.Security.Cryptography.RSAOpenSsl
(all constructors)System.Security.Cryptography.SafeEvpPKeyHandle
(entire class)Migration Guidance
The documentation provides clear migration paths:
RSA.Create()
instead ofnew RSAOpenSsl()
AesCcm
withAesGcm
where possibleFixes #46789.
💡 You can make Copilot smarter by setting up custom instructions, customizing its development environment and configuring Model Context Protocol (MCP) servers. Learn more Copilot coding agent tips in the docs.
Internal previews