UNPKG

shamirs-secret-sharing-ts

Version:

A simple implementation of Shamir's Secret Sharing configured to use a finite field in GF(2^8) with 128 bit padding

50 lines (49 loc) 1.23 kB
{ "name": "shamirs-secret-sharing-ts", "version": "1.0.2", "description": "A simple implementation of Shamir's Secret Sharing configured to use a finite field in GF(2^8) with 128 bit padding", "main": "dist/index.js", "types": "dist/index.d.ts", "directories": { "test": "test" }, "scripts": { "test": "tsc & ava test", "prepublishOnly": "npm run test" }, "keywords": [ "shamir", "secret", "sharing", "sss", "typescript", "ts" ], "author": "Mathias Schütz <info@mathiasschuetz.com>", "license": "MIT", "dependencies": { "randombytes": "^2.1.0" }, "devDependencies": { "@ava/typescript": "^1.1.1", "@types/node": "^13.11.1", "@types/randombytes": "^2.0.0", "ava": "^0.25.0", "nyc": "^12.0.2" }, "repository": { "type": "git", "url": "git+https://github.com/mathiasschuetz/shamirs-secret-sharing.git" }, "bugs": { "url": "https://github.com/mathiasschuetz/shamirs-secret-sharing/issues" }, "homepage": "https://github.com/mathiasschuetz/shamirs-secret-sharing#readme", "ava": { "typescript": { "rewritePaths": { "src/": "build/" } } } }