node-cipher
Advanced tools
Comparing version 4.1.0 to 4.1.1
{ | ||
"name": "node-cipher", | ||
"version": "4.1.0", | ||
"version": "4.1.1", | ||
"description": "Securely encrypt sensitive files for use in public source control.", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -38,3 +38,3 @@ node-cipher [![Build Status](https://travis-ci.org/nathanbuchar/node-cipher.svg?branch=master)](https://travis-ci.org/nathanbuchar/node-cipher) | ||
|`password`|`string`|The key that you will use to encrypt or decrypt your input file. If you are decrypting a file, the password must be the same as the one specified during encryption, or else the decryption will fail.|✓|| | ||
|`algorithm`|`string`|The cipher algorithm to use. Use [`list()`](#listarray) to see a list of available cipher algorithms.||`"cast5-cbc"`| | ||
|`algorithm`|`string`|The cipher algorithm to use. Use [`list()`](#list) to see a list of available cipher algorithms.||`"cast5-cbc"`| | ||
@@ -64,3 +64,3 @@ | ||
|`callback`|`Function`|The function to call when the encryption has completed.|| | ||
|`scope`|`Object`|The Function scope for the `callback` parameter, if provided.|| | ||
|`scope`|`Object`|The scope for the `callback` function parameter, if provided.|| | ||
@@ -125,3 +125,3 @@ #### Example | ||
|`callback`|`Function`|The function to call when the decryption has completed.|| | ||
|`scope`|`Object`|The Function scope for the `callback` parameter, if provided.|| | ||
|`scope`|`Object`|The scope for the `callback` function parameter, if provided.|| | ||
@@ -128,0 +128,0 @@ #### Example |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
15668