diff --git a/src/Core/Enums/Saml2BindingType.cs b/src/Core/Enums/Saml2BindingType.cs new file mode 100644 index 0000000000..6476af1a93 --- /dev/null +++ b/src/Core/Enums/Saml2BindingType.cs @@ -0,0 +1,9 @@ +namespace Bit.Core.Enums +{ + public enum Saml2BindingType : byte + { + HttpRedirect = 1, + HttpPost = 2, + Artifact = 4 + } +} diff --git a/src/Core/Enums/Saml2SigningBehavior.cs b/src/Core/Enums/Saml2SigningBehavior.cs new file mode 100644 index 0000000000..9ef55ec003 --- /dev/null +++ b/src/Core/Enums/Saml2SigningBehavior.cs @@ -0,0 +1,9 @@ +namespace Bit.Core.Enums +{ + public enum Saml2SigningBehavior : byte + { + IfIdpWantAuthnRequestsSigned = 0, + Always = 1, + Never = 3 + } +}