-
Notifications
You must be signed in to change notification settings - Fork 4.9k
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
Replace SPKI hashing with a managed implementation #97559
Conversation
Tagging subscribers to this area: @dotnet/area-system-security, @bartonjs, @vcsjones Issue DetailsThis gets rid of the pinvoke to
|
...raphy/src/System/Security/Cryptography/X509Certificates/X509SubjectKeyIdentifierExtension.cs
Show resolved
Hide resolved
Test failures are known. Merging. |
This gets rid of the pinvoke to
CryptHashPublicKeyInfo
and replaces the implementation with a managed one since we needed it anyway for non-Windows platforms. Since the implementation would be the same for Windows/non-Windows, we can get rid of it from the X.509 PAL.