encryptionhelper

0.0.3 • Public • Published

EncryptionHelper

A collection of helper functions that encrypt, decrypt, and hash strings and files based on NodeJS's native crypto module. This module can be used to create ciphers and decipher them. It makes dealing with Node's crypto module a lot easier.

Installation

npm install --save encryptionhelper

Usage

var EncryptionHelper = require('encryptionhelper');
 
var hash = EncryptionHelper.hash('some buffer/string data', 'md5');
// hash is equal to md5 of the given string
// Also supports MD5, SHA1, SHA256, and many more (based on whatever NodeJS natively supports-- use `openssl list-message-digest-algorithms` to display the avaiable digest algorithms on your machine)
 
var fileStream = EncryptionHelper.hashFile('path/to/file', 'md5', function (err, res) {
  // err is any error that occured
  // res is the md5 hash of the file at path/to/file
});
 
var myKey = 'you-will-never-guess';
var cipher = EncryptionHelper.cipher(myKey, 'some buffer/string data', 'aes256');
// Creates a aes256-based cipher using the key provided
// Supports more than just the AES256 algo-- supports all the algo's NodeJS's crypto module supports
// Use `openssl list-cipher-algorithms` to display the available cipher algorithms on your machine
 
var originalString =  EncryptionHelper.decipher(myKey, cipher);
// originalString === 'some buffer/string data'
 
var fileStream = EncryptionHelper.cipherFile(myKey, 'path/to/file', function (err, res) {
  // err is any error that occured
  // res is the ciphered/encrypted version of the file's contents
});
 
var fileStream = EncryptionHelper.decipherFile(myKey, 'path/to/file', function (err, res) {
  // err is any error that occured
  // res is the deciphered/unencrypted version of the file's contents
});

API

EncryptionHelper.hash(data, [algorithm, [outputEncoding, [inputEncoding]]]);

Calculates and returns a checksum String or Buffer, the digest of all of the passed data to be hashed.

Parameters:

  • data - String or Buffer - represents the data to be used to create the hash
  • algorithm - String - represents the algorithm to be used to create the digest. Use openssl list-message-digest-algorithms or console.log(require('crypto').getHashes()); to display the avaiable digest algorithms on your machine. Defaults to 'md5'.
  • outputEncoding - String - represents the encoding of the output produced by this function. This can be 'hex', 'binary', or 'base64'. If encoding is passed in as null, then a buffer is returned. Defaults to 'hex'.
  • inputEncoding - String - represents the encoding of the input data. This can be 'utf8', 'ascii', or 'binary'. If encoding is passed in as null, then a buffer is expected. Defaults to 'utf8'.

Returns: a hash string

EncryptionHelper.hashFile(filePath, [algorithm, [outputEncoding, [inputEncoding]]], cb);

Calculates and returns a checksum String or Buffer, the digest of all of the passed data to be hashed.

Parameters:

  • file - String - represents the path to the file to be used to create the hash
  • algorithm - String - represents the algorithm to be used to create the digest. Use openssl list-message-digest-algorithms or console.log(require('crypto').getHashes()); to display the avaiable digest algorithms on your machine. Defaults to 'md5'.
  • outputEncoding - String - represents the encoding of the output produced by this function. This can be 'hex', 'binary', or 'base64'. If encoding is passed in as null, then a buffer is returned. Defaults to 'hex'.
  • inputEncoding - String - represents the encoding of the input data. This can be 'utf8', 'ascii', or 'binary'. If encoding is passed in as null, then a buffer is expected. Defaults to 'utf8'.
  • cb - Function - A callback to run afterwords. The method signature looks like: function (err, hash){ }

Returns: an open file stream

License

(The MIT License)

Copyright (c) 2013 Tarun Chaudhry <tarunc92@gmail.com>

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Readme

Keywords

none

Package Sidebar

Install

npm i encryptionhelper

Weekly Downloads

6

Version

0.0.3

License

none

Last publish

Collaborators

  • tarunc