
Security News
crates.io Ships Security Tab and Tightens Publishing Controls
crates.io adds a Security tab backed by RustSec advisories and narrows trusted publishing paths to reduce common CI publishing risks.
hypercore-multi-key
Advanced tools
Function that takes a hypercore and returns a new one that is signed by a new key pair but backed by the same data
Function that takes a hypercore and returns a new one that is signed by a new key pair but backed by the same data.
npm install hypercore-multi-key
Useful if you want to do one-off sharing of a hypercore
const multiKey = require('hypercore-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'
newFeed = multiKey(feed, [keyPair], [options])Create a new hypercore 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 hypercore.
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 hypercore constructor.
MIT
FAQs
Function that takes a hypercore and returns a new one that is signed by a new key pair but backed by the same data
The npm package hypercore-multi-key receives a total of 0 weekly downloads. As such, hypercore-multi-key popularity was classified as not popular.
We found that hypercore-multi-key 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
crates.io adds a Security tab backed by RustSec advisories and narrows trusted publishing paths to reduce common CI publishing risks.

Research
/Security News
A Chrome extension claiming to hide Amazon ads was found secretly hijacking affiliate links, replacing creators’ tags with its own without user consent.

Security News
A surge of AI-generated vulnerability reports has pushed open source maintainers to rethink bug bounties and tighten security disclosure processes.