2022-08-24 00:10:53 +02:00
|
|
|
import { DeviceMobile } from '@vicons/tabler';
|
|
|
|
import { defineTool } from '../tool';
|
|
|
|
|
|
|
|
export const tool = defineTool({
|
|
|
|
name: 'OTP code generator',
|
2022-08-24 00:22:54 +02:00
|
|
|
path: '/otp-generator',
|
2022-08-24 00:10:53 +02:00
|
|
|
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,
|
|
|
|
});
|