mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-23 16:26:15 -04:00
13 lines
500 B
TypeScript
13 lines
500 B
TypeScript
![]() |
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,
|
||
|
});
|