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

@ -5,12 +5,13 @@ import { tool as tokenGenerator } from './token-generator';
import { tool as hashText } from './hash-text';
import { tool as uuidGenerator } from './uuid-generator';
import { tool as romanNumeralConverter } from './roman-numeral-converter';
import { tool as cypher } from './encryption';
export const toolsByCategory: ToolCategory[] = [
{
name: 'Crypto',
icon: LockOpen,
components: [tokenGenerator, hashText, uuidGenerator],
components: [tokenGenerator, hashText, uuidGenerator, cypher],
},
{
name: 'Converter',