
Research
/Security News
9 Malicious NuGet Packages Deliver Time-Delayed Destructive Payloads
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.
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
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.

Research
/Security News
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.

Security News
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.