aboutsummaryrefslogtreecommitdiff
path: root/src/tools/otp-code-generator-and-validator/index.ts
blob: 914368b67810bc05a81448ae27c2681fb465de72 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
import { DeviceMobile } from '@vicons/tabler';
import { defineTool } from '../tool';

export const tool = defineTool({
  name: 'OTP code generator',
  path: '/otp-generator',
  description: 'Generate and validate time-based OTP (one time password) for multi-factor authentication.',
  keywords: [
    'otp',
    'code',
    'generator',
    'validator',
    'one',
    'time',
    'password',
    'authentication',
    'MFA',
    'mobile',
    'device',
    'security',
    'TOTP',
    'Time',
    'HMAC',
  ],
  component: () => import('./otp-code-generator-and-validator.vue'),
  icon: DeviceMobile,
});