JSPM

ed2curve-blake2b

1.0.2
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 7
  • Score
    100M100P100Q39242F
  • License ISC

Ed25519 to Curve22519 (w/ Blake2b hash) key conversion utility

Package Exports

  • ed2curve-blake2b

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 (ed2curve-blake2b) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

ed2curve-blake2b

Modified functionality from libsodium to convert ed25519 signing keys to curve25519 encryption keys for NaCl/libsodium-compatible keys generated using Blake2b-512 hash instead of SHA-512 hash, is translated into Javascript by Emscripten.

The file ed2curve-blake2b/src/libsodium/sodium.js is the optimized output of Enscripten, ready for use, with an interface ed2curve-blake2b/src/libsodium/ed2curve-blake2b.js. They are both on the ed2curve branch of this repository

Node.js usage:

$ npm i ed2curve-blake2b

Node.js code snippet:

const ed2curve = require('ed2curve-blake2b')

const signingKeys = { SK: <Uint8Array>, PK: <Uint8Array> } // SK is SecretKey, PK is PublicKey
const encryptionKeys = ed2curve(signingKeys) // { SK: <Uint8Array>, PK: <Uint8Array> }

Build instructions

To create sodium.js from libsodium, install Emscripten, then:

$ git clone https://github.com/lumenano/ed2curve-blake2b.git
$ cd ed2curve-blake2b
$ git checkout ed2curve
$ cd src/libsodium
$ ./make.sh