diff --git a/src/components/Tools/AES/AES.vue b/src/components/Tools/AES/AES.vue deleted file mode 100644 index ae42340..0000000 --- a/src/components/Tools/AES/AES.vue +++ /dev/null @@ -1,339 +0,0 @@ - - - - - - - - - - - - - - - - - - - - 加密模式: - - - - - - - 密钥长度: - - - - - - - - - - 加密 - 清空 - - - - - - - 复制 - - - - - - - - - - - - - - - - - 加密模式: - - - - - - - 密钥长度: - - - - - - - - - - 解密 - 清空 - - - - - - - 复制 - - - - - - - - - - - 在线AES加解密工具,支持CBC和ECB模式,支持128位、192位、256位密钥长度,可用于数据加密和解密。 - - - - - - - \ No newline at end of file diff --git a/src/components/Tools/AesEncrypt/AesEncrypt.vue b/src/components/Tools/AesEncrypt/AesEncrypt.vue deleted file mode 100644 index b368390..0000000 --- a/src/components/Tools/AesEncrypt/AesEncrypt.vue +++ /dev/null @@ -1,419 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 加密 - 清空 - - - - - - - - - - - - 复制结果 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 解密 - 清空 - - - - - - - - - - - - 复制结果 - - - - - - - - - - - - - - 在线AES加密解密工具,支持多种加密模式和填充方式,提供安全可靠的数据加密解密服务。 - - - - - - - - 使用强随机数生成器生成密钥和IV - 推荐使用CBC模式而非ECB模式 - 定期更换密钥和IV - 妥善保管密钥,不要泄露给他人 - 在生产环境中使用AES-256而非AES-128 - - - - - - - - - 数据传输加密:保护网络传输中的敏感数据 - 文件存储加密:加密本地存储的重要文件 - API通信加密:保护API接口的数据安全 - - - - - - - - - - \ No newline at end of file diff --git a/src/components/Tools/tools.ts b/src/components/Tools/tools.ts index c729171..af8bee3 100644 --- a/src/components/Tools/tools.ts +++ b/src/components/Tools/tools.ts @@ -161,15 +161,7 @@ export function getToolsCate() { cateId: 2, cate: '开发运维', }, - { - id: 1, - title: 'AES加解密', - logo: '/images/logo/md5.png', - desc: '在线AES加解密工具,支持多种加密模式和填充方式,提供安全可靠的数据加密解密服务', - url: '/aes/', - cateId: 2, - cate: '开发运维', - }, + { id: 1, title: 'Hash计算器', @@ -179,15 +171,6 @@ export function getToolsCate() { cateId: 2, cate: '开发运维', }, - { - id: 1, - title: 'SHA1加解密', - logo: '/images/logo/sha1.svg', - desc: '在线SHA1哈希计算器,用于计算文本的SHA1哈希值', - url: '/sha1/', - cateId: 2, - cate: '开发运维', - }, { id: 1, title: 'XML格式化', diff --git a/src/router/router.ts b/src/router/router.ts index c5aac14..9de36ae 100644 --- a/src/router/router.ts +++ b/src/router/router.ts @@ -451,16 +451,7 @@ export const constantRoute = [ description: '在线数据存储单位换算工具,支持字节、KB、MB、GB、TB、PB、EB等存储单位之间的相互转换', } }, - { - path: '/aes', - component: () => import('@/components/Tools/AesEncrypt/AesEncrypt.vue'), - name: 'aes', - meta: { - title: "AES加解密", - keywords: 'AES加密,AES解密,加密工具,解密工具', - description: '在线AES加解密工具,支持多种加密模式和填充方式,提供安全可靠的数据加密解密服务', - } - }, + { path: '/hashcalculator', component: () => import('@/components/Tools/HashCalculator/HashCalculator.vue'),