IdentityShroud/IdentityShroud.Core/Security/JsonWebAlgorithm.cs

8 lines
159 B
C#
Raw Permalink Normal View History

using System.Security.Cryptography;
namespace IdentityShroud.Core.Security;
public static class JsonWebAlgorithm
{
public const string RS256 = "RS256";
}