
Product
Introducing Webhook Events for Alert Changes
Add real-time Socket webhook events to your workflows to automatically receive software supply chain alert changes in real time.
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
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.

Product
Add real-time Socket webhook events to your workflows to automatically receive software supply chain alert changes in real time.

Security News
ENISA has become a CVE Program Root, giving the EU a central authority for coordinating vulnerability reporting, disclosure, and cross-border response.

Product
Socket now scans OpenVSX extensions, giving teams early detection of risky behaviors, hidden capabilities, and supply chain threats in developer tools.