All Projects → 3box → sss-wasm

3box / sss-wasm

Licence: MIT license
Javascript bindings for the sss secret sharing library using WASM

Programming Languages

javascript
184084 projects - #8 most used programming language
HTML
75241 projects
c
50402 projects - #5 most used programming language

Shamir secret sharing for Javascript

Shamir secret sharing is an algorithm for splitting data into multiple shares, a subset of which can then be combined to reconstruct the original secret. This library aims to provide javascript bindings for dsprenkles/sss implementation of this algorithm using Web Assembly.

Background

Currently there are bindings for sss in node.js. However this code will not run in the browser since it uses node binaries. By using Web Assembly it is possible to create a javascript library that works both in the browser as well as node.js.

Usage

// Import the sss library
import * as sss from 'sss-wasm' 

// Create a buffer for the data that will be shared (must be 64 bytes long)
const data = new Uint8Array(64);
data.fill(0x42);

const amount = 5;
const threshold = 4;

// Creating 5 shares (need 3 to restore)
const shares = await sss.createShares(data, amount, threshold);

// For demonstrational purpose, lose one of the shares
const newShares = [shares[3], shares[2], shares[4], shares[0]]

// Restore the original secret
const restored = await sss.combineShares(newShares);

// Dump the original secret back to the screen
console.log(restored)

Build

We need Emscripten toolchain installed to build wasm. More info

You need to setup submodules first.

git submodules init
git submodules update
cd sss
git submodules init
git submodules update

Then go to the root folder.

npm install
npm run build
npm run test
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].