mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-05-04 13:29:13 -04:00
feat(tool): encryption
This commit is contained in:
parent
9c9be9e2e2
commit
888ab2cf37
3 changed files with 115 additions and 1 deletions
11
src/tools/encryption/index.ts
Normal file
11
src/tools/encryption/index.ts
Normal 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,
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue