1.0.5 • Published 9 months ago

safecrypts v1.0.5

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

9 months ago

1.0.4

9 months ago

1.0.3

9 months ago

1.0.2

9 months ago

1.0.1

9 months ago

1.0.0

9 months ago