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

ssb-identities

Package Overview
Dependencies
Maintainers
19
Versions
14
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ssb-identities

use multiple identities from a single sbot instance

latest
Source
npmnpm
Version
2.1.1
Version published
Maintainers
19
Created
Source

ssb-identities

manage multiple ssb identities, as an sbot plugin.

Usage

var createSbot = require('scuttlebot')
  .use(require('scuttlebot/plugins/master'))
  .use(require('scuttlebot/plugins/gossip'))
  .use(require('scuttlebot/plugins/replicate'))
  .use(require('ssb-identities'))

var sbot = createSbot(config)
// locally or via an remote ssb-client connection

sbot.identities.list(function (err, data) {
  // do things
})

This module uses the addUnboxer method of ssb db so that encrypted messages will be decrypted before being passed to database views.

API

identities.main (cb)

returns the main identity (sbot.id)

identities.list (cb)

returns the list of identities, with the main identity first.

identities.create (cb)

create a new identity, stored in ~/.ssb/identities/secret_[N].butt where N is the left-padded number of this identity. returns the id of the newly created identity.

The file created will use the ssb-keys format`

identities.publishAs({id:id, content: obj, private: boolean}, cb)

publish a message as a specific identity. id must be provided and must be already in the identities list. If private is true, content.recps must be set. recps must contain the id.

More information about sbot plugins

For more information about these type of plugins, refer to the plugins.md in the secret-stack repository.

License

MIT

FAQs

Package last updated on 15 Oct 2019

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