1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-06 18:42:49 -05:00
Files
bitwarden/src/Core/Enums/Saml2NameIdFormat.cs
2022-08-29 16:06:55 -04:00

15 lines
294 B
C#

namespace Bit.Core.Enums;
public enum Saml2NameIdFormat : byte
{
NotConfigured = 0,
Unspecified = 1,
EmailAddress = 2,
X509SubjectName = 3,
WindowsDomainQualifiedName = 4,
KerberosPrincipalName = 5,
EntityIdentifier = 6,
Persistent = 7,
Transient = 8,
}