blob: c8dd85dbf617bb0921d114801f2bbd3a5be5fc90 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
import { Lock } from '@vicons/tabler';
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: Lock,
redirectFrom: ['/cypher'],
});
|