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'], };