![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
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.
octosecret-crypto
Advanced tools
Encrypt and decrypt data using RSA keys
Nodejs library that wraps openSSL to provide encryption and decryption of files and buffers. This was originally created to provide the crypto layer of octosecret, a CLI that allows easy data encryption and decryption between github users.
npm install octosecret-crypto --save
File operations:
Stream operations:
Utils:
Encrypt and decrypt files
const octosecret = require('octosecret-crypto')
// Encrypt "octocat.gif" to "octocat.gif.octosecret" using "public.key"
await octosecret.file.encrypt(`octocat.gif`, `octocat.gif.octosecret`, ['public.key'])
// Decrypt "octocat.gif.octosecret" to "octocat.gif" using "id_rsa" key
await octosecret.file.decrypt(`octocat.gif.octosecret`, `octocat.gif`, `~/.ssh/id_rsa`)
Encrypt and decrypt streams
const octosecret = require('octosecret-crypto')
// Example data
const dataToEncrypt = "Super secret message"
// Encrypt
const encrypted = await octosecret.stream.encrypt(dataToEncrypt, ['public.key'])
// Decrypt
const decrypted = await octosecret.stream.decrypt(encrypted, `~/.ssh/id_rsa`)
// Convert Buffer to String
const decryptedText = decrypted.toString()
// "Super secret message"
Check __test__
and src/example.js
for more examples
MIT © Hugo Rodrigues
FAQs
Encryption lib for octosecret
The npm package octosecret-crypto receives a total of 2 weekly downloads. As such, octosecret-crypto popularity was classified as not popular.
We found that octosecret-crypto 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.