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
When PusherServer is used on a machine with FIPS enabled, a runtime exception is thrown ": This implementation is not part of the Windows Platform FIPS validated cryptographic algorithms" in CryptoHelper.GetMd5Hash() due to MD5 not being validated as FIPS compliant.
That said, the intent is to just create a hash, not actually secure anything. A solution that would allow PusherServer to run on a FIPS enabled environment is to "roll your own Md5" which is pretty straightforward https://stackoverflow.com/a/52166330/600299
Would you accept a PR for this?
The text was updated successfully, but these errors were encountered:
When PusherServer is used on a machine with FIPS enabled, a runtime exception is thrown ": This implementation is not part of the Windows Platform FIPS validated cryptographic algorithms" in CryptoHelper.GetMd5Hash() due to MD5 not being validated as FIPS compliant.
That said, the intent is to just create a hash, not actually secure anything. A solution that would allow PusherServer to run on a FIPS enabled environment is to "roll your own Md5" which is pretty straightforward
https://stackoverflow.com/a/52166330/600299
Would you accept a PR for this?
The text was updated successfully, but these errors were encountered: