it-tools/src/tools/encryption/index.ts

13 lines
452 B
TypeScript

import { Lock } from '@vicons/tabler';
import { defineTool } from '../tool';
import { translate as t } from '@/plugins/i18n.plugin';
export const tool = defineTool({
name: t('tools.encryption.title'),
path: '/encryption',
description: t('tools.encryption.description'),
keywords: ['cypher', 'encipher', 'text', 'AES', 'TripleDES', 'Rabbit', 'RC4'],
component: () => import('./encryption.vue'),
icon: Lock,
redirectFrom: ['/cypher'],
});