aboutsummaryrefslogtreecommitdiff
path: root/src/tools/encryption/index.ts
blob: 9a95f4bc8fcab901d24780a1f4b8535b5790cc9d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
import { Lock } from '@vicons/tabler';
import { defineTool } from '../tool';

export const tool = defineTool({
  name: 'Encrypt / decrypt text',
  path: '/encryption',
  description: 'Encrypt and decrypt text clear text using crypto algorithm like AES, TripleDES, Rabbit or RC4.',
  keywords: ['cypher', 'encipher', 'text', 'AES', 'TripleDES', 'Rabbit', 'RC4'],
  component: () => import('./encryption.vue'),
  icon: Lock,
  redirectFrom: ['/cypher'],
});