New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

odrive-crypt

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

odrive-crypt

Decrypts data encrypted by odrive.

  • 1.0.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
8
decreased by-55.56%
Maintainers
1
Weekly downloads
 
Created
Source

odrive-crypt

Build Status

Decrypts files encrypted by odrive.

Installation

Install Node.js.

Open a terminal/command prompt and type:

npm install -g odrive-crypt

Usage

To decrypt all of the files at ~/odrive/Encrpytor/my-vault and save them to ~/my-vault, use the following command.

odrive-crypt -i ~/odrive/Encryptor/my-vault -o ~/my-vault

To learn more about the available options, use

odrive-crypt -h

API

odrive-crypt also has a rich API.

Usage

npm install --save odrive-crypt
const odriveCrypt = require('odrive-crypt')

odriveCrypt.createReadStream(passphrase, path)

Returns a readable stream of decrypted data.

  • passphrase (string|Buffer): The passphrase used to encrypt the data.
  • path (string|Buffer): The path to the file to decrypt.

odriveCrypt.decryptFile(passphrase, inFilename, outFilename, callback)

Decrypts a file asynchronously.

  • passphrase (string|Buffer): The passphrase used to encrypt the data.
  • inFilename (string|Buffer): The name of the file to decrypt.
  • outFilename (string|Buffer): The destination of the decrypted file.
  • callback ((err) => void)

odriveCrypt.decryptFileSync(passphrase, inFilename, outFilename)

Synchronous version of decryptFile. Not recommended for large files since the entire file is loaded into memory.

odriveCrypt.decryptFilename(passphrase, filename, callback)

Decrypts a filename asynchronously.

  • passphrase (string|Buffer): The passphrase used to encrypt the data.
  • filename (string|Buffer): The filename to decrypt.
  • callback ((err, filename) => void)
    • filename (string): The decrypted filename.

odriveCrypt.decryptFilenameSync(passphrase, filename)

Synchronous version of decryptFilename.

new odriveCrypt.FileDecipher(passphrase)

Creates a decipher like crypto.Decipher for decrypting files.

new odriveCrypt.FilenameDecipher(passphrase)

Creates a decipher like crypto.Decipher for decrypting filenames.

Keywords

FAQs

Package last updated on 21 Mar 2018

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc