blob: f70a3a6002c1310f8bae5127d39a5a083ec0b82f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
import { LockSquare } from '@vicons/tabler';
import { defineTool } from '../tool';
export const tool = defineTool({
name: 'Bcrypt',
path: '/bcrypt',
description:
'Hash and compare text string using bcrypt. Bcrypt is a password-hashing function based on the Blowfish cipher.',
keywords: ['bcrypt', 'hash', 'compare', 'password', 'salt', 'round', 'storage', 'crypto'],
component: () => import('./bcrypt.vue'),
icon: LockSquare,
});
|