diff --git a/bitwarden_license/src/Portal/Startup.cs b/bitwarden_license/src/Portal/Startup.cs index 3972a6094..ccd8c6fb7 100644 --- a/bitwarden_license/src/Portal/Startup.cs +++ b/bitwarden_license/src/Portal/Startup.cs @@ -46,15 +46,6 @@ namespace Bit.Portal services.AddScoped((serviceProvider) => serviceProvider.GetService()); - // Fido2 - services.AddFido2(options => - { - options.ServerDomain = new Uri(globalSettings.BaseServiceUri.Vault).Host; - options.ServerName = "Bitwarden"; - options.Origin = globalSettings.BaseServiceUri.Vault; - options.TimestampDriftTolerance = 300000; - }); - // Identity services.AddEnterprisePortalTokenIdentityServices(); if (globalSettings.SelfHosted) diff --git a/bitwarden_license/src/Sso/Startup.cs b/bitwarden_license/src/Sso/Startup.cs index ccfcd92d0..dfac772cc 100644 --- a/bitwarden_license/src/Sso/Startup.cs +++ b/bitwarden_license/src/Sso/Startup.cs @@ -43,15 +43,6 @@ namespace Bit.Sso // Context services.AddScoped(); - // Fido2 - services.AddFido2(options => - { - options.ServerDomain = new Uri(globalSettings.BaseServiceUri.Vault).Host; - options.ServerName = "Bitwarden"; - options.Origin = globalSettings.BaseServiceUri.Vault; - options.TimestampDriftTolerance = 300000; - }); - // Mvc services.AddControllersWithViews();