mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-08-03 20:45:18 +02:00
feat(new-tool): hmac generator
This commit is contained in:
parent
02c4963531
commit
1bc6380c6f
3 changed files with 112 additions and 1 deletions
12
src/tools/hmac-generator/index.ts
Normal file
12
src/tools/hmac-generator/index.ts
Normal file
|
@ -0,0 +1,12 @@
|
|||
import { ShortTextRound } from '@vicons/material';
|
||||
import { defineTool } from '../tool';
|
||||
|
||||
export const tool = defineTool({
|
||||
name: 'Hmac generator',
|
||||
path: '/hmac-generator',
|
||||
description:
|
||||
'Computes a hash-based message authentication code (HMAC) using a secret key and your favorite hashing function.',
|
||||
keywords: ['hmac', 'generator', 'MD5', 'SHA1', 'SHA256', 'SHA224', 'SHA512', 'SHA384', 'SHA3', 'RIPEMD160'],
|
||||
component: () => import('./hmac-generator.vue'),
|
||||
icon: ShortTextRound,
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue