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

14 lines
474 B
TypeScript
Raw Normal View History

import { IconLock } from '@tabler/icons-vue';
import { defineTool } from '../tool';
import { translate } from '@/plugins/i18n.plugin';
2022-04-07 22:13:09 +02:00
export const tool = defineTool({
name: translate('tools.encryption.title'),
2022-04-07 22:13:09 +02:00
path: '/encryption',
description: translate('tools.encryption.description'),
2022-05-09 14:38:54 +02:00
keywords: ['cypher', 'encipher', 'text', 'AES', 'TripleDES', 'Rabbit', 'RC4'],
2022-04-07 22:13:09 +02:00
component: () => import('./encryption.vue'),
icon: IconLock,
redirectFrom: ['/cypher'],
});