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

@ -0,0 +1,12 @@
import { Wifi } from '@vicons/tabler';
import { defineTool } from '../tool';
export const tool = defineTool({
name: 'WPA PSK generator',
path: '/wpa-psk-generator',
description: 'WPA Pre-shared Key Generator to convert a WPA passphrase and SSID to the 256-bit pre-shared ("raw") key',
keywords: ['wpa', 'psk', 'pre', 'shared', 'key', 'ssid', 'passphrase', 'generator'],
component: () => import('./wpa-psk-generator.vue'),
icon: Wifi,
createdAt: new Date('2024-08-15'),
});