You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 22, 2018. It is now read-only.
When unnetcoreappifying our libraries we didn't also enable our SHA256.Create() implementations to work under the desktop framework. To do this you need to change SHA256.Create() the to the following:
publicstaticSHA256CreateSHA256(){SHA256sha256;try{sha256=SHA256.Create();}// SHA256.Create is documented to throw this exception on FIPS compliant machines.// See: https://msdn.microsoft.com/en-us/library/z08hz7ad%28v=vs.110%29.aspx?f=255&MSPPError=-2147217396catch(System.Reflection.TargetInvocationException){// Fallback to a FIPS compliant SHA256 algorithm.sha256=newSHA256CryptoServiceProvider();}returnsha256;}
The text was updated successfully, but these errors were encountered:
When unnetcoreappifying our libraries we didn't also enable our
SHA256.Create()
implementations to work under the desktop framework. To do this you need to changeSHA256.Create()
the to the following:The text was updated successfully, but these errors were encountered: