8 lines
159 B
C#
8 lines
159 B
C#
|
|
using System.Security.Cryptography;
|
||
|
|
|
||
|
|
namespace IdentityShroud.Core.Security;
|
||
|
|
|
||
|
|
public static class JsonWebAlgorithm
|
||
|
|
{
|
||
|
|
public const string RS256 = "RS256";
|
||
|
|
}
|