admin-vben/src/settings/encryptionSetting.ts

14 lines
364 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

import { isDevMode } from '@/utils/env'
// 缓存默认过期时间
export const DEFAULT_CACHE_TIME = 60 * 60 * 24 * 7
// 开启缓存加密后加密密钥。采用aes加密
export const cacheCipher = {
key: '_11111000001111@',
iv: '@11111000001111_'
}
// 是否加密缓存,默认生产环境加密
export const enableStorageEncryption = !isDevMode()