noble-curves-simple
Version:
Pure JavaScript ES modules version of @noble/curves - Audited & minimal JS implementation of elliptic curve cryptography
89 lines • 2.25 kB
JSON
{
"name": "noble-curves-simple",
"version": "0.0.1",
"description": "Pure JavaScript ES modules version of @noble/curves - Audited & minimal JS implementation of elliptic curve cryptography",
"files": [
"*.js",
"abstract"
],
"scripts": {
"test": "node test/index.js"
},
"author": "Paul Miller (https://paulmillr.com)",
"homepage": "https://paulmillr.com/noble/",
"repository": {
"type": "git",
"url": "git+https://github.com/johnhenry/noble-curves-simple.git"
},
"license": "MIT",
"dependencies": {
"@noble/hashes": "1.8.0"
},
"sideEffects": false,
"type": "module",
"main": "index.js",
"exports": {
".": "./index.js",
"./abstract/bls": "./abstract/bls.js",
"./abstract/curve": "./abstract/curve.js",
"./abstract/edwards": "./abstract/edwards.js",
"./abstract/hash-to-curve": "./abstract/hash-to-curve.js",
"./abstract/modular": "./abstract/modular.js",
"./abstract/montgomery": "./abstract/montgomery.js",
"./abstract/poseidon": "./abstract/poseidon.js",
"./abstract/tower": "./abstract/tower.js",
"./abstract/utils": "./abstract/utils.js",
"./abstract/weierstrass": "./abstract/weierstrass.js",
"./abstract/fft": "./abstract/fft.js",
"./_shortw_utils": "./_shortw_utils.js",
"./bls12-381": "./bls12-381.js",
"./bn254": "./bn254.js",
"./ed448": "./ed448.js",
"./ed25519": "./ed25519.js",
"./index": "./index.js",
"./jubjub": "./jubjub.js",
"./misc": "./misc.js",
"./nist": "./nist.js",
"./p256": "./p256.js",
"./p384": "./p384.js",
"./p521": "./p521.js",
"./pasta": "./pasta.js",
"./secp256k1": "./secp256k1.js",
"./utils": "./utils.js"
},
"engines": {
"node": "^14.21.3 || >=16"
},
"keywords": [
"elliptic",
"curve",
"cryptography",
"secp256k1",
"ed25519",
"p256",
"p384",
"p521",
"secp256r1",
"ed448",
"x25519",
"ed25519",
"bls12-381",
"bn254",
"alt_bn128",
"bls",
"noble",
"ecc",
"ecdsa",
"eddsa",
"weierstrass",
"montgomery",
"edwards",
"schnorr",
"fft",
"esm",
"es-modules",
"javascript",
"pure-js"
],
"funding": "https://paulmillr.com/funding/"
}