2023-03-10 08:11:11 -05:00
|
|
|
|
using System.Reflection;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Bit.Core;
|
2022-08-29 16:06:55 -04:00
|
|
|
|
|
2018-08-15 10:54:15 -04:00
|
|
|
|
public static class Constants
|
|
|
|
|
|
{
|
|
|
|
|
|
public const int BypassFiltersEventId = 12482444;
|
2023-10-30 08:40:06 -05:00
|
|
|
|
public const int FailedSecretVerificationDelay = 2000;
|
2021-08-04 09:00:30 +10:00
|
|
|
|
|
|
|
|
|
|
// File size limits - give 1 MB extra for cushion.
|
|
|
|
|
|
// Note: if request size limits are changed, 'client_max_body_size'
|
|
|
|
|
|
// in nginx/proxy.conf may also need to be updated accordingly.
|
|
|
|
|
|
public const long FileSize101mb = 101L * 1024L * 1024L;
|
|
|
|
|
|
public const long FileSize501mb = 501L * 1024L * 1024L;
|
2023-01-18 13:16:57 -05:00
|
|
|
|
public const string DatabaseFieldProtectorPurpose = "DatabaseFieldProtection";
|
|
|
|
|
|
public const string DatabaseFieldProtectedPrefix = "P|";
|
2023-05-15 07:38:41 -07:00
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Default number of days an organization has to apply an updated license to their self-hosted installation after
|
|
|
|
|
|
/// their subscription has expired.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public const int OrganizationSelfHostSubscriptionGracePeriodDays = 60;
|
2023-09-28 08:45:13 -04:00
|
|
|
|
|
2023-10-17 18:17:13 +02:00
|
|
|
|
public const string Fido2KeyCipherMinimumVersion = "2023.10.0";
|
2024-11-05 20:25:06 +01:00
|
|
|
|
public const string SSHKeyCipherMinimumVersion = "2024.12.0";
|
2025-06-02 22:04:01 +02:00
|
|
|
|
public const string DenyLegacyUserMinimumVersion = "2025.6.0";
|
2023-10-17 18:17:13 +02:00
|
|
|
|
|
2023-11-20 15:55:31 +01:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Used by IdentityServer to identify our own provider.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public const string IdentityProvider = "bitwarden";
|
2023-12-20 22:54:45 +01:00
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Date identifier used in ProviderService to determine if a provider was created before Nov 6, 2023.
|
|
|
|
|
|
/// If true, the organization plan assigned to that provider is updated to a 2020 plan.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public static readonly DateTime ProviderCreatedPriorNov62023 = new DateTime(2023, 11, 6);
|
2024-02-13 20:28:14 +01:00
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// When you set the ProrationBehavior to create_prorations,
|
|
|
|
|
|
/// Stripe will automatically create prorations for any changes made to the subscription,
|
|
|
|
|
|
/// such as changing the plan, adding or removing quantities, or applying discounts.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public const string CreateProrations = "create_prorations";
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// When you set the ProrationBehavior to always_invoice,
|
|
|
|
|
|
/// Stripe will always generate an invoice when a subscription update occurs,
|
|
|
|
|
|
/// regardless of whether there is a proration or not.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public const string AlwaysInvoice = "always_invoice";
|
2018-08-15 10:54:15 -04:00
|
|
|
|
}
|
2020-08-26 14:12:04 -04:00
|
|
|
|
|
2023-12-05 17:21:46 +01:00
|
|
|
|
public static class AuthConstants
|
|
|
|
|
|
{
|
|
|
|
|
|
public static readonly RangeConstant PBKDF2_ITERATIONS = new(600_000, 2_000_000, 600_000);
|
|
|
|
|
|
|
|
|
|
|
|
public static readonly RangeConstant ARGON2_ITERATIONS = new(2, 10, 3);
|
|
|
|
|
|
public static readonly RangeConstant ARGON2_MEMORY = new(15, 1024, 64);
|
|
|
|
|
|
public static readonly RangeConstant ARGON2_PARALLELISM = new(1, 16, 4);
|
2024-12-17 08:59:39 -08:00
|
|
|
|
public static readonly string NewDeviceVerificationExceptionCacheKeyFormat = "NewDeviceVerificationException_{0}";
|
2023-12-05 17:21:46 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public class RangeConstant
|
|
|
|
|
|
{
|
|
|
|
|
|
public int Default { get; }
|
|
|
|
|
|
public int Min { get; }
|
|
|
|
|
|
public int Max { get; }
|
|
|
|
|
|
|
|
|
|
|
|
public RangeConstant(int min, int max, int defaultValue)
|
|
|
|
|
|
{
|
|
|
|
|
|
Default = defaultValue;
|
|
|
|
|
|
Min = min;
|
|
|
|
|
|
Max = max;
|
|
|
|
|
|
|
|
|
|
|
|
if (Min > Max)
|
|
|
|
|
|
{
|
|
|
|
|
|
throw new ArgumentOutOfRangeException($"{Min} is larger than {Max}.");
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (!InsideRange(defaultValue))
|
|
|
|
|
|
{
|
|
|
|
|
|
throw new ArgumentOutOfRangeException($"{Default} is outside allowed range of {Min}-{Max}.");
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public bool InsideRange(int number)
|
|
|
|
|
|
{
|
|
|
|
|
|
return Min <= number && number <= Max;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2020-08-26 14:12:04 -04:00
|
|
|
|
public static class TokenPurposes
|
|
|
|
|
|
{
|
|
|
|
|
|
public const string LinkSso = "LinkSso";
|
|
|
|
|
|
}
|
2021-01-11 11:03:46 -05:00
|
|
|
|
|
|
|
|
|
|
public static class AuthenticationSchemes
|
|
|
|
|
|
{
|
|
|
|
|
|
public const string BitwardenExternalCookieAuthenticationScheme = "bw.external";
|
2018-08-15 10:54:15 -04:00
|
|
|
|
}
|
2023-03-07 13:46:52 -05:00
|
|
|
|
|
|
|
|
|
|
public static class FeatureFlagKeys
|
|
|
|
|
|
{
|
2025-01-23 00:04:08 +10:00
|
|
|
|
/* Admin Console Team */
|
|
|
|
|
|
public const string AccountDeprovisioning = "pm-10308-account-deprovisioning";
|
|
|
|
|
|
public const string VerifiedSsoDomainEndpoint = "pm-12337-refactor-sso-details-endpoint";
|
2025-01-31 12:18:10 -06:00
|
|
|
|
public const string LimitItemDeletion = "pm-15493-restrict-item-deletion-to-can-manage-permission";
|
2025-02-14 21:05:49 +10:00
|
|
|
|
public const string PolicyRequirements = "pm-14439-policy-requirements";
|
2025-03-27 14:49:38 +00:00
|
|
|
|
public const string SsoExternalIdVisibility = "pm-18630-sso-external-id-visibility";
|
2025-04-07 09:14:10 -05:00
|
|
|
|
public const string ScimInviteUserOptimization = "pm-16811-optimize-invite-user-flow-to-fail-fast";
|
2025-04-28 08:20:47 -04:00
|
|
|
|
public const string EventBasedOrganizationIntegrations = "event-based-organization-integrations";
|
2025-05-29 10:57:50 -04:00
|
|
|
|
public const string OptimizeNestedTraverseTypescript = "pm-21695-optimize-nested-traverse-typescript";
|
|
|
|
|
|
public const string SeparateCustomRolePermissions = "pm-19917-separate-custom-role-permissions";
|
2025-01-23 00:04:08 +10:00
|
|
|
|
|
2025-03-19 15:27:51 -04:00
|
|
|
|
/* Auth Team */
|
|
|
|
|
|
public const string PM9112DeviceApprovalPersistence = "pm-9112-device-approval-persistence";
|
2025-03-31 14:27:09 -04:00
|
|
|
|
public const string TwoFactorExtensionDataPersistence = "pm-9115-two-factor-extension-data-persistence";
|
2024-04-30 12:43:12 -04:00
|
|
|
|
public const string EmailVerification = "email-verification";
|
2024-07-30 10:19:36 -04:00
|
|
|
|
public const string UnauthenticatedExtensionUIRefresh = "unauth-ui-refresh";
|
2025-05-16 09:50:32 -04:00
|
|
|
|
public const string BrowserExtensionLoginApproval = "pm-14938-browser-extension-login-approvals";
|
2025-03-30 16:03:09 -04:00
|
|
|
|
public const string SetInitialPasswordRefactor = "pm-16117-set-initial-password-refactor";
|
|
|
|
|
|
public const string ChangeExistingPasswordRefactor = "pm-16117-change-existing-password-refactor";
|
|
|
|
|
|
public const string RecoveryCodeLogin = "pm-17128-recovery-code-login";
|
|
|
|
|
|
|
|
|
|
|
|
/* Autofill Team */
|
|
|
|
|
|
public const string IdpAutoSubmitLogin = "idp-auto-submit-login";
|
|
|
|
|
|
public const string UseTreeWalkerApiForPageDetailsCollection = "use-tree-walker-api-for-page-details-collection";
|
|
|
|
|
|
public const string InlineMenuFieldQualification = "inline-menu-field-qualification";
|
|
|
|
|
|
public const string InlineMenuPositioningImprovements = "inline-menu-positioning-improvements";
|
|
|
|
|
|
public const string SSHAgent = "ssh-agent";
|
|
|
|
|
|
public const string SSHVersionCheckQAOverride = "ssh-version-check-qa-override";
|
2024-08-05 12:04:23 -05:00
|
|
|
|
public const string GenerateIdentityFillScriptRefactor = "generate-identity-fill-script-refactor";
|
2024-08-07 10:42:00 -05:00
|
|
|
|
public const string DelayFido2PageScriptInitWithinMv2 = "delay-fido2-page-script-init-within-mv2";
|
2024-08-21 22:04:08 -05:00
|
|
|
|
public const string NotificationBarAddLoginImprovements = "notification-bar-add-login-improvements";
|
2025-01-08 18:36:18 -05:00
|
|
|
|
public const string BlockBrowserInjectionsByDomain = "block-browser-injections-by-domain";
|
2025-01-14 15:47:35 -05:00
|
|
|
|
public const string NotificationRefresh = "notification-refresh";
|
2024-09-04 13:43:59 -04:00
|
|
|
|
public const string EnableNewCardCombinedExpiryAutofill = "enable-new-card-combined-expiry-autofill";
|
2024-11-28 09:49:09 +01:00
|
|
|
|
public const string MacOsNativeCredentialSync = "macos-native-credential-sync";
|
2024-12-04 14:42:12 -05:00
|
|
|
|
public const string InlineMenuTotp = "inline-menu-totp";
|
2025-03-30 16:03:09 -04:00
|
|
|
|
|
|
|
|
|
|
/* Billing Team */
|
|
|
|
|
|
public const string AC2101UpdateTrialInitiationEmail = "AC-2101-update-trial-initiation-email";
|
|
|
|
|
|
public const string TrialPayment = "PM-8163-trial-payment";
|
2025-04-16 17:27:58 +02:00
|
|
|
|
public const string PM17772_AdminInitiatedSponsorships = "pm-17772-admin-initiated-sponsorships";
|
2025-01-03 09:14:07 -06:00
|
|
|
|
public const string UsePricingService = "use-pricing-service";
|
2025-03-30 16:03:09 -04:00
|
|
|
|
public const string PM12276Breadcrumbing = "pm-12276-breadcrumbing-for-business-features";
|
2025-04-02 19:47:48 +02:00
|
|
|
|
public const string PM19422_AllowAutomaticTaxUpdates = "pm-19422-allow-automatic-tax-updates";
|
2025-04-16 13:36:04 -04:00
|
|
|
|
public const string PM199566_UpdateMSPToChargeAutomatically = "pm-199566-update-msp-to-charge-automatically";
|
2025-05-01 12:12:45 -04:00
|
|
|
|
public const string PM19956_RequireProviderPaymentMethodDuringSetup = "pm-19956-require-provider-payment-method-during-setup";
|
2025-05-01 17:13:10 -04:00
|
|
|
|
public const string UseOrganizationWarningsService = "use-organization-warnings-service";
|
2025-05-08 10:43:19 -04:00
|
|
|
|
public const string PM20322_AllowTrialLength0 = "pm-20322-allow-trial-length-0";
|
2025-05-19 14:53:48 -04:00
|
|
|
|
public const string PM21092_SetNonUSBusinessUseToReverseCharge = "pm-21092-set-non-us-business-use-to-reverse-charge";
|
2025-05-21 08:10:34 -04:00
|
|
|
|
public const string PM21383_GetProviderPriceFromStripe = "pm-21383-get-provider-price-from-stripe";
|
2025-03-30 16:03:09 -04:00
|
|
|
|
|
2025-04-28 16:41:49 +02:00
|
|
|
|
/* Data Insights and Reporting Team */
|
|
|
|
|
|
public const string RiskInsightsCriticalApplication = "pm-14466-risk-insights-critical-application";
|
|
|
|
|
|
public const string EnableRiskInsightsNotifications = "enable-risk-insights-notifications";
|
|
|
|
|
|
|
2025-03-30 16:03:09 -04:00
|
|
|
|
/* Key Management Team */
|
|
|
|
|
|
public const string ReturnErrorOnExistingKeypair = "return-error-on-existing-keypair";
|
|
|
|
|
|
public const string PM4154BulkEncryptionService = "PM-4154-bulk-encryption-service";
|
|
|
|
|
|
public const string PrivateKeyRegeneration = "pm-12241-private-key-regeneration";
|
|
|
|
|
|
public const string Argon2Default = "argon2-default";
|
|
|
|
|
|
public const string UserkeyRotationV2 = "userkey-rotation-v2";
|
|
|
|
|
|
public const string SSHKeyItemVaultItem = "ssh-key-vault-item";
|
2025-04-15 12:03:06 -07:00
|
|
|
|
public const string UserSdkForDecryption = "use-sdk-for-decryption";
|
2025-04-14 12:48:52 -05:00
|
|
|
|
public const string PM17987_BlockType0 = "pm-17987-block-type-0";
|
2025-03-30 16:03:09 -04:00
|
|
|
|
|
|
|
|
|
|
/* Mobile Team */
|
|
|
|
|
|
public const string NativeCarouselFlow = "native-carousel-flow";
|
|
|
|
|
|
public const string NativeCreateAccountFlow = "native-create-account-flow";
|
|
|
|
|
|
public const string AndroidImportLoginsFlow = "import-logins-flow";
|
|
|
|
|
|
public const string AppReviewPrompt = "app-review-prompt";
|
|
|
|
|
|
public const string AndroidMutualTls = "mutual-tls";
|
2025-01-28 13:39:19 -05:00
|
|
|
|
public const string SingleTapPasskeyCreation = "single-tap-passkey-creation";
|
|
|
|
|
|
public const string SingleTapPasskeyAuthentication = "single-tap-passkey-authentication";
|
2025-02-03 09:35:38 -05:00
|
|
|
|
public const string EnablePMAuthenticatorSync = "enable-pm-bwa-sync";
|
2025-02-12 10:21:12 -05:00
|
|
|
|
public const string PM3503_MobileAnonAddySelfHostAlias = "anon-addy-self-host-alias";
|
2025-03-14 13:22:22 -04:00
|
|
|
|
public const string PM3553_MobileSimpleLoginSelfHostAlias = "simple-login-self-host-alias";
|
2025-04-09 12:17:04 -04:00
|
|
|
|
public const string EnablePMFlightRecorder = "enable-pm-flight-recorder";
|
|
|
|
|
|
public const string MobileErrorReporting = "mobile-error-reporting";
|
2025-04-18 12:47:54 -04:00
|
|
|
|
public const string AndroidChromeAutofill = "android-chrome-autofill";
|
2025-06-10 15:50:22 -04:00
|
|
|
|
public const string EnablePMPreloginSettings = "enable-pm-prelogin-settings";
|
2025-06-10 17:27:51 -03:00
|
|
|
|
public const string AppIntents = "app-intents";
|
2025-03-30 16:03:09 -04:00
|
|
|
|
|
|
|
|
|
|
/* Platform Team */
|
|
|
|
|
|
public const string PersistPopupView = "persist-popup-view";
|
|
|
|
|
|
public const string StorageReseedRefactor = "storage-reseed-refactor";
|
|
|
|
|
|
public const string WebPush = "web-push";
|
|
|
|
|
|
public const string RecordInstallationLastActivityDate = "installation-last-activity-date";
|
2025-04-09 09:14:57 +02:00
|
|
|
|
public const string IpcChannelFramework = "ipc-channel-framework";
|
2025-03-30 16:03:09 -04:00
|
|
|
|
|
|
|
|
|
|
/* Tools Team */
|
|
|
|
|
|
public const string ItemShare = "item-share";
|
|
|
|
|
|
public const string DesktopSendUIRefresh = "desktop-send-ui-refresh";
|
|
|
|
|
|
|
|
|
|
|
|
/* Vault Team */
|
|
|
|
|
|
public const string PM8851_BrowserOnboardingNudge = "pm-8851-browser-onboarding-nudge";
|
|
|
|
|
|
public const string PM9111ExtensionPersistAddEditForm = "pm-9111-extension-persist-add-edit-form";
|
|
|
|
|
|
public const string SecurityTasks = "security-tasks";
|
|
|
|
|
|
public const string CipherKeyEncryption = "cipher-key-encryption";
|
2025-04-10 16:24:16 -04:00
|
|
|
|
public const string DesktopCipherForms = "pm-18520-desktop-cipher-forms";
|
2025-04-10 14:55:40 -04:00
|
|
|
|
public const string PM19941MigrateCipherDomainToSdk = "pm-19941-migrate-cipher-domain-to-sdk";
|
2025-04-16 15:38:09 -07:00
|
|
|
|
public const string EndUserNotifications = "pm-10609-end-user-notifications";
|
2025-04-30 11:03:59 -04:00
|
|
|
|
public const string PhishingDetection = "phishing-detection";
|
2025-05-28 10:37:10 -04:00
|
|
|
|
public const string RemoveCardItemTypePolicy = "pm-16442-remove-card-item-type-policy";
|
2024-08-30 16:45:38 -04:00
|
|
|
|
|
2023-03-10 08:11:11 -05:00
|
|
|
|
public static List<string> GetAllKeys()
|
|
|
|
|
|
{
|
|
|
|
|
|
return typeof(FeatureFlagKeys).GetFields(BindingFlags.Public | BindingFlags.Static | BindingFlags.FlattenHierarchy)
|
|
|
|
|
|
.Where(fi => fi.IsLiteral && !fi.IsInitOnly && fi.FieldType == typeof(string))
|
|
|
|
|
|
.Select(x => (string)x.GetRawConstantValue())
|
|
|
|
|
|
.ToList();
|
|
|
|
|
|
}
|
2023-09-01 07:06:21 -04:00
|
|
|
|
|
|
|
|
|
|
public static Dictionary<string, string> GetLocalOverrideFlagValues()
|
|
|
|
|
|
{
|
|
|
|
|
|
// place overriding values when needed locally (offline), or return null
|
2025-04-21 12:36:38 -04:00
|
|
|
|
return null;
|
2023-09-01 07:06:21 -04:00
|
|
|
|
}
|
2023-03-07 13:46:52 -05:00
|
|
|
|
}
|