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
Customers are starting to use AWS Lambda native code supported features for dotnet. This involves building AOT and trimmed projects. The fallout of this, is that there are underlying library patterns that just do not support Trimming easily in compilation. IonHash dotnet is using one HashAlgorithm.Create(algorithm);
The System Security Crypto library has been updated to reflect this anti-pattern.
"Cryptographic factory methods accepting an algorithm name are obsolete. Use the parameterless Create factory method on the algorithm type instead."
The downside is that the IonHash dotnet library will probably have to create a lookup table of hashes to support being called.
The text was updated successfully, but these errors were encountered:
Customers are starting to use AWS Lambda native code supported features for dotnet. This involves building AOT and trimmed projects. The fallout of this, is that there are underlying library patterns that just do not support Trimming easily in compilation. IonHash dotnet is using one HashAlgorithm.Create(algorithm);
The System Security Crypto library has been updated to reflect this anti-pattern.
"Cryptographic factory methods accepting an algorithm name are obsolete. Use the parameterless Create factory method on the algorithm type instead."
The downside is that the IonHash dotnet library will probably have to create a lookup table of hashes to support being called.
The text was updated successfully, but these errors were encountered: