feat(new tool): WPA PSK Raw Key Generator

Fix #1236
This commit is contained in:
sharevb 2024-08-23 21:57:52 +02:00 committed by ShareVB
parent 318fb6efb9
commit 8b933792cf
6 changed files with 114 additions and 1 deletions

View file

@ -2,6 +2,7 @@ import { tool as base64FileConverter } from './base64-file-converter';
import { tool as base64StringConverter } from './base64-string-converter';
import { tool as basicAuthGenerator } from './basic-auth-generator';
import { tool as emailNormalizer } from './email-normalizer';
import { tool as wpaPskGenerator } from './wpa-psk-generator';
import { tool as asciiTextDrawer } from './ascii-text-drawer';
@ -88,7 +89,20 @@ import { tool as yamlViewer } from './yaml-viewer';
export const toolsByCategory: ToolCategory[] = [
{
name: 'Crypto',
components: [tokenGenerator, hashText, bcrypt, uuidGenerator, ulidGenerator, cypher, bip39, hmacGenerator, rsaKeyPairGenerator, passwordStrengthAnalyser, pdfSignatureChecker],
components: [
tokenGenerator,
hashText,
bcrypt,
uuidGenerator,
ulidGenerator,
cypher,
bip39,
hmacGenerator,
rsaKeyPairGenerator,
passwordStrengthAnalyser,
pdfSignatureChecker,
wpaPskGenerator,
],
},
{
name: 'Converter',