1.0.5 • Published 2 years ago

safecrypts v1.0.5

Weekly downloads
-
License
ISC
Repository
-
Last release
2 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

2 years ago

1.0.4

2 years ago

1.0.3

2 years ago

1.0.2

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago