feat(tool): encryption

This commit is contained in:
Corentin Thomasset 2022-04-07 22:13:09 +02:00
parent 9c9be9e2e2
commit 888ab2cf37
No known key found for this signature in database
GPG key ID: DBD997E935996158
3 changed files with 115 additions and 1 deletions

View file

@ -0,0 +1,11 @@
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', 'uncypher', 'text', 'AES', 'TripleDES', 'Rabbit', 'RC4'],
component: () => import('./encryption.vue'),
icon: Lock,
};