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

export const tool: ITool = {
  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'],
};