aboutsummaryrefslogtreecommitdiff
path: root/src/tools/basic-auth-generator/index.ts
blob: 3138b5042fddd8dff769da8d6282a64ea34546a8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import { PasswordRound } from '@vicons/material';
import { defineTool } from '../tool';

export const tool = defineTool({
  name: 'Basic auth generator',
  path: '/basic-auth-generator',
  description: 'Generate a base64 basic auth header from an username and a password.',
  keywords: [
    'basic',
    'auth',
    'generator',
    'username',
    'password',
    'base64',
    'authentication',
    'header',
    'authorization',
  ],
  component: () => import('./basic-auth-generator.vue'),
  icon: PasswordRound,
});