10 lines
208 B
C#
10 lines
208 B
C#
namespace StellaOps.Cryptography.Kms;
|
|
|
|
/// <summary>
|
|
/// Supported algorithm identifiers for the KMS abstraction.
|
|
/// </summary>
|
|
public static class KmsAlgorithms
|
|
{
|
|
public const string Es256 = "ES256";
|
|
}
|