Socket
Socket
Sign inDemoInstall

bittorrent-dht-sodium

Package Overview
Dependencies
2
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    bittorrent-dht-sodium

Sodium wrapper for working with BEP44 on bittorrent-dht


Version published
Weekly downloads
3
Maintainers
1
Install size
9.41 MB
Created
Weekly downloads
 

Readme

Source

bittorrent-dht-sodium

Build Status

Sodium wrapper for working with BEP44 on bittorrent-dht

Usage

var eddsa = require('bittorrent-dht-sodium')
const DHT = require('bittorrent-dht')
const dht = new DHT({
  verify: eddsa.verify
})

const keys = eddsa.keygen()

dht.put({
  v: Buffer.from('Hello world'),
  k: keys.pk,
  seq: 0,
  sign: (msg) => {
    return eddsa.sign(msg, keys.sk)
  }
}, function (err, hash) {
  // ...
})

API

const { pk, sk } = eddsa.keygen([sk])

Derive a Ed25519 keypair, optionally deriving the pk from an exisiting sk. Returns pk as Public Key, sk as Secret Key. The sk here is not compatible with ed25519-supercop, as the encoding is different, but signatures will be the same.

const sig = eddsa.sign(msg, sk)

Sign Buffer msg with sk returning the signature as a Buffer

const valid = eddsa.verify(sig, msg, pk)

Verify Buffer sig against Buffer msg with pk returning boolean whether valid or not.

const salt = eddsa.salt()

Generate a 64 byte random salt. This is equal to the block size of SHA-1, the hash function used by the DHT.

Install

npm install bittorrent-dht-sodium

License

ISC

FAQs

Last updated on 20 Mar 2020

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc