1.0.5 • Published 3 years ago

safecrypts v1.0.5

Weekly downloads
-
License
ISC
Repository
-
Last release
3 years ago

��

SafeCrypt Usage

Installation

npm install safecrypt

## Usage
const SafeCrypt = require('safecrypt');

// Generate a hashed password
const plainPassword = 'mySecurePassword';
const hashedPassword = SafeCrypt.generateHash(plainPassword);

// Compare a password with the hashed password
const isMatch = SafeCrypt.compareHash(plainPassword, hashedPassword);
console.log('Password Match:', isMatch);

.Note: Replace 'mySecurePassword' with the actual password you want to hash and compare.
1.0.5

3 years ago

1.0.4

3 years ago

1.0.3

3 years ago

1.0.2

3 years ago

1.0.1

3 years ago

1.0.0

3 years ago