mirror of
https://github.com/esiur/esiur-dotnet.git
synced 2026-07-30 17:30:40 +00:00
12 lines
239 B
C#
12 lines
239 B
C#
namespace Esiur.Security.Authority;
|
|
|
|
/// <summary>
|
|
/// Describes the current state of a post-encryption authentication key rotation.
|
|
/// </summary>
|
|
public enum AuthenticationKeyRotationRuling
|
|
{
|
|
Failed,
|
|
InProgress,
|
|
Succeeded,
|
|
}
|