New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

@ddatabase/multi-key

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@ddatabase/multi-key

Function that takes a dDatabase and returns a new one that's signed by a new keypair but backed by the same data.

latest
Source
npmnpm
Version
1.0.0
Version published
Maintainers
1
Created
Source

@ddatabase/multi-key

Function that takes a dDatabase and returns a new one that is signed by a new key pair but backed by the same data.

npm install @ddatabase/multi-key

Useful if you want to do one-off sharing of a dDatabase

Usage

const multiKey = require('@ddatabase/multi-key')

// returns a new feed that is identical as the one passed
// but signed by a new key pair
const newFeed = multiKey(feed)

feed.append('hello')
newFeed.get(0, console.log) // returns 'hello'

API

newFeed = multiKey(feed, [keyPair], [options])

Create a new dDatabase that is backed by the same data as another one but signed by a new key pair.

You can replicate this new one to other people just like you would any other dDatabase.

If you want to use a specific new key pair pass it in as the 2nd arguments. Otherwise a random one is generated.

All options are passed to the dDatabase constructor.

License

MIT

FAQs

Package last updated on 05 Mar 2021

Did you know?

Socket

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