dvsekhvalnov / jose-jwt

Ultimate Javascript Object Signing and Encryption (JOSE), JSON Web Token (JWT) and Json Web Keys (JWK) Implementation for .NET and .NET Core
MIT License
936 stars 184 forks source link

Remove legacy dependency `System.Security.Cryptography.Algorithms` for `netstandard2.1` target #223

Open OronDF343 opened 1 year ago

OronDF343 commented 1 year ago

The reference to System.Security.Cryptography.Algorithms should not be required for the netstandard2.1 target. In general, any System.* packages with version 4.3.x are meant for .NET Core 1.x based platforms only. I believe that this dependency can be safely removed, and will clean up the list of installed transient dependencies for modern platforms.

dvsekhvalnov commented 1 year ago

Hey @OronDF343 , thanks for note, i'll double check.