aboutsummaryrefslogtreecommitdiff
path: root/src/tools/hmac-generator/index.ts
blob: 3500684e30276bb7433b4e38fcb510ea5ec54a78 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
import { ShortTextRound } from '@vicons/material';
import { defineTool } from '../tool';
import { translate } from '@/plugins/i18n.plugin';

export const tool = defineTool({
  name: translate('tools.hmac-generator.title'),
  path: '/hmac-generator',
  description: translate('tools.hmac-generator.description'),
  keywords: ['hmac', 'generator', 'MD5', 'SHA1', 'SHA256', 'SHA224', 'SHA512', 'SHA384', 'SHA3', 'RIPEMD160'],
  component: () => import('./hmac-generator.vue'),
  icon: ShortTextRound,
});