
Security News
Meet Socket at Black Hat and DEF CON 2025 in Las Vegas
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
bitcoin-encrypt
Advanced tools
Using Bitcoin address key pairs for encrypted messaging
npm install bitcoin-encrypt
const { encrypt, decrypt } = require('bitcoin-encrypt');
// https://bitcore.io/playground/#/address
// Alice's Bitcoin Address: 1McM18AHhVp6FkjGjQevskr7H755KWseM9
const alicePub = '036b019a209248bc2e2485dca4741aa089e389b32283fc8198d8d9ac402ccb7aa9'
const alicePriv = '395ab0d7a5a9ab9518cf9fd4b79ce567ed4ae4c413bc4c5b9c68ad4bce1ccd3b';
// Bob's Bitcoin Address: 1DopxgTr1UqiLNQEEPqC2TbP4eqyVSvi1a
const bobPub = '03f082645af35a40687188f87291b1e21a511731bbea804ac468ed6384ae44adbc';
const bobPriv = '1d42b09be4d78519331f1d6034d07397322e5cb427428cdc4ac7fd04fd154f09';
// Alice encrypts message to Bob using Bob's public key
const message = 'Hello World!';
const encrypted = encrypt(bobPub, alicePriv, message);
// Bob decrypts message using Alice's public key
const decrypted = decrypt(alicePub, bobPriv, encrypted);
assert(message === decrypted);
npm test
Inspired by: https://medium.com/@dealancer/how-to-using-bitcoin-key-pairs-to-for-encrypted-messaging-a0a980e627b1
FAQs
Using Bitcoin address key pairs for encrypted messaging
The npm package bitcoin-encrypt receives a total of 1 weekly downloads. As such, bitcoin-encrypt popularity was classified as not popular.
We found that bitcoin-encrypt 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
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
Security News
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
Security News
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.