namespace Nop.Core.Security; /// /// Represents default values related to data protection /// public static partial class NopDataProtectionDefaults { /// /// Gets the name of the key file used to store the protection key list to Azure (used with the UseAzureBlobStorageToStoreDataProtectionKeys option enabled) /// public static string AzureDataProtectionKeyFile => "DataProtectionKeys.xml"; /// /// Gets the name of the key path used to store the protection key list to local file system (used when UseAzureBlobStorageToStoreDataProtectionKeys option not enabled) /// public static string DataProtectionKeysPath => "~/App_Data/DataProtectionKeys"; }