mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-05-04 05:19:12 -04:00
13 lines
474 B
TypeScript
13 lines
474 B
TypeScript
import { IconLock } from '@tabler/icons-vue';
|
|
import { defineTool } from '../tool';
|
|
import { translate } from '@/plugins/i18n.plugin';
|
|
|
|
export const tool = defineTool({
|
|
name: translate('tools.encryption.title'),
|
|
path: '/encryption',
|
|
description: translate('tools.encryption.description'),
|
|
keywords: ['cypher', 'encipher', 'text', 'AES', 'TripleDES', 'Rabbit', 'RC4'],
|
|
component: () => import('./encryption.vue'),
|
|
icon: IconLock,
|
|
redirectFrom: ['/cypher'],
|
|
});
|