aboutsummaryrefslogtreecommitdiff
path: root/src/tools/string-obfuscator/index.ts
blob: d5b453187d25210ac2e2acb7c74c54afab39841c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
import { EyeOff } from '@vicons/tabler';
import { defineTool } from '../tool';

export const tool = defineTool({
  name: 'String obfuscator',
  path: '/string-obfuscator',
  description: 'Obfuscate a string (like a secret, an IBAN, or a token) to make it shareable and identifiable without revealing its content.',
  keywords: ['string', 'obfuscator', 'secret', 'token', 'hide', 'obscure', 'mask', 'masking'],
  component: () => import('./string-obfuscator.vue'),
  icon: EyeOff,
  createdAt: new Date('2023-08-16'),
});