Files
git.stella-ops.org/src/__Libraries/StellaOps.Cryptography.Kms/KmsAlgorithms.cs
master fac626db8d up
2025-10-29 19:24:20 +02:00

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";
}