chore: remove phased out storage encryption policy (#2323)

This commit is contained in:
Mo
2023-05-03 07:56:01 -05:00
committed by GitHub
parent e3f8b81139
commit 9f937f217b
8 changed files with 14 additions and 235 deletions

View File

@@ -31,7 +31,6 @@ export enum StorageKey {
ProtectionExpirey = 'SessionExpiresAtKey',
ProtectionSessionLength = 'SessionLengthKey',
KeyRecoveryUndecryptableItems = 'key_recovery_undecryptable',
StorageEncryptionPolicy = 'storage_policy',
WebSocketUrl = 'webSocket_url',
UserRoles = 'user_roles',
OfflineUserRoles = 'offline_user_roles',

View File

@@ -7,13 +7,8 @@ export enum StoragePersistencePolicies {
Ephemeral = 2,
}
export enum StorageEncryptionPolicy {
Default = 1,
Disabled = 2,
}
export enum StorageValueModes {
/** Stored inside wrapped encrpyed storage object */
/** Stored inside wrapped encrypted storage object */
Default = 1,
/** Stored outside storage object, unencrypted */
Nonwrapped = 2,