@svenanders/security

Hash and verify, encrypt and decrypt


Keywords
security, hash, verify, encrypt, decrypt, validate
License
ISC
Install
npm install @svenanders/security@1.1.0

Documentation

@svenanders/security

Node.js package for handling hashing of passwords and encryption/decryption of data

  • Encrypt and Decrypt

Provide ENCRYPTION_KEY through env.

import {Encrypt, Decrypt} from "@svenanders/security"
Encrypt(text_to_encrypt) // -> returns encrypted text
Verify(encryped_text) // -> returns original text
  • Hash and Verify

Uses pbkdf2Sync and sha512

import {Hash, Verify} from "@svenanders/security"
Hash(input_password) // -> {hash, salt} (to be stored in db)
Verify(hash, input_password, salt) // -> true if input_password can be verified
  • Email validation
import {ValidateEmail} from "@svenanders/security"
ValidateEmail(email) // -> true if email validates