Socket
Socket
Sign inDemoInstall

crypto-extra

Package Overview
Dependencies
25
Maintainers
1
Versions
16
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    crypto-extra

convenience methods for node crypto


Version published
Maintainers
1
Install size
2.82 MB
Created

Readme

Source

Node.js Crypto-Extra

Build Status Coverage Status

Adds convenience methods to the native Node.js crypto module. It is a drop in replacement, and extends the original module functionality.

Why?

The native crypto module can be a pain to work with, and requires a lot of boilerplate to do things such as randomizing and encryption. This abstracts all of that.

Getting Started

npm install crypto-extra --save

To use in your project, simply require into your project as you would the crypto module.

var crypto = require('crypto-extra')

/* or with ES2015 */
import crypto from 'crypto-extra'

API

.encrypt (value, secretKey)

Encrypts a value with a secret key using AES-256.

  • value - The value you want to encrypt. Everything (except objects) is converted to a string before encryption for consistency. Objects are stringified using JSON.stringify.

    Type: any

  • secretKey - The key used in the encryption. If not supplied, the lib will fallback to the environment variable ENCRYPTION_KEY. Must be at least 32 characters.

    Type: string
    Default: process.env.ENCRYPTION_KEY

.decrypt (value, secretKey)

Decrypts a value using AES-256.

  • value - The encrypted value you want to decrypt. Will automatically parse objects that were encrypted.

    Type: string

  • secretKey - The key used in the encryption. If not supplied, the lib will fallback to the environment variable ENCRYPTION_KEY. Must be at least 32 characters.

    Type: string
    Default: process.env.ENCRYPTION_KEY

.generateKey ()

Generates a random 256-bit key that can be used as an encryption key. Returns a 64-character string.

.hash (value, options)

Hashes a string with the provided algorithm.

  • value - The value you want to hash. Any non-string value is converted to a string before hashing for consistency.

    Type: string

  • options

    • rounds - The number of rounds to use when hashing.

      Type: integer
      Default: 1

    • salt - A string to be appended to the value before it is hashed.

      Type: string

    • algorithm - The hashing algorithm to use.

      Type: string
      Default: SHA256

.checksum (filepath, options)

Gets the checksum hash of a file. Returns a promise resolving with the sum.

Can also be called with .checksumSync() for a synchronous version.

  • filepath - The path of the file you want a checksum for. This will be relative to the current working directory if not an absolute path.

    Type: string

  • options

    • algorithm - The hashing algorithm to use.

      Type: string
      Default: SHA256

.bcrypt (value, options)

Get the bcrypt hash of a string. Returns a promise resolving with the hash.

Can also be called with .bcryptSync() for a synchronous version.

  • value - The value you want to hash with bcrypt.

    Type: string

  • options

    • saltRounds - The number of rounds to use for generating the salt.

      Type: integer
      Default: 10

.bcryptCompare (value, hash)

Compare a value to a bcrypt hash to validate whether they're the same. Returns a promise resolving with a boolean.

Can also be called with .bcryptCompareSync() for a synchronous version.

  • value - The value to compare to the hash.

    Type: string

  • hash - The bcrypt hash to use in the comparison.

    Type: string

.randomString (length, charset)

Returns a random string of a defined length.

  • length - Length of the random string. Must be above 0.

    Type: integer
    Default: 10

  • charset - The character set to take from.

    Type: string
    Default: ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789

.randomNumber (options)

Returns a random string within a defined range.

  • options
    • min - Minimum number of range. Must be a positive integer.

      Type: integer
      Default: 0

    • max - Maximum number of range. This cannot be higher than 9007199254740991 due to Javascript integer limits (http://mzl.la/1A1nVyU). If you need a number higher than this, consider using randomString with the charset 0123456789 instead.

      Type: integer
      Default: 9007199254740991

License

MIT © Jason Maurer

Keywords

FAQs

Last updated on 28 Apr 2016

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc