mirror of
https://github.com/Art051/it-tools.git
synced 2025-08-11 19:29:03 +00:00
feat(new-tool): bcrypt
This commit is contained in:
11
src/tools/bcrypt/index.ts
Normal file
11
src/tools/bcrypt/index.ts
Normal file
@@ -0,0 +1,11 @@
|
||||
import { LockSquare } from '@vicons/tabler';
|
||||
import type { ITool } from './../Tool';
|
||||
|
||||
export const tool: ITool = {
|
||||
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,
|
||||
};
|
||||
Reference in New Issue
Block a user