JSPM

derived-key-storage

2.0.1
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 411
  • Score
    100M100P100Q90674F
  • License MIT

Derive a key and secret key file from a name

Package Exports

  • derived-key-storage

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (derived-key-storage) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

derived-key-storage

Derive a key and secret key file from a name.

npm install derived-key-storage

Usage

const derivedStorage = require('derived-key-storage')
const raf = require('random-access-file')

const { key, secretKey } = derivedStorage(name => raf(name), (name, cb) => {
  // derive your keypair here ...
  // if name is null, this keypair is fresh, otherwise derive from that name
  cb(null, {
    name,
    publicKey,
    secretKey
  })
})

key.read(0, 32, (err, buf) => {
  console.log('public key is', err, buf)
})

API

{ key, secretKey } = derivedStorage(storage, deriver)

Create a new key pair instance. Returns two random-access-storage instances, one for the public key and one for the secret key. The storage function you pass in will be used to store the name of the keypair. The deriver function should look like this:

function (name, cb) {
  cb(null, {
    name,
    publicKey,
    secretKey
  })
}

Where name is a buffer or null containing the name of the keypair. If the name is null you need to return the name of the keypair back to the callback and still will be written along with a length prefix to the storage you pass in.

License

MIT