2022-04-07 22:13:09 +02:00
|
|
|
import { Lock } from '@vicons/tabler';
|
2022-06-01 23:52:21 +02:00
|
|
|
import { defineTool } from '../tool';
|
2022-04-07 22:13:09 +02:00
|
|
|
|
2022-06-01 23:52:21 +02:00
|
|
|
export const tool = defineTool({
|
2022-04-07 22:13:09 +02:00
|
|
|
name: 'Encrypt / decrypt text',
|
|
|
|
path: '/encryption',
|
|
|
|
description: 'Encrypt and decrypt text clear text using crypto algorithm like AES, TripleDES, Rabbit or RC4.',
|
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: Lock,
|
2022-04-16 10:10:21 +02:00
|
|
|
redirectFrom: ['/cypher'],
|
2022-06-01 23:52:21 +02:00
|
|
|
});
|