Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
odrive-crypt
Advanced tools
Decrypts files encrypted by odrive.
Install Node.js.
Open a terminal/command prompt and type:
npm install -g odrive-crypt
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
odrive-crypt also has a rich API.
npm install --save odrive-crypt
const odriveCrypt = require('odrive-crypt')
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.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
)Synchronous version of decryptFile
. Not recommended for large files since the entire file is loaded into memory.
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.Synchronous version of decryptFilename
.
Creates a decipher like crypto.Decipher
for decrypting files.
Creates a decipher like crypto.Decipher
for decrypting filenames.
FAQs
Decrypts data encrypted by odrive.
The npm package odrive-crypt receives a total of 6 weekly downloads. As such, odrive-crypt popularity was classified as not popular.
We found that odrive-crypt demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
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.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.