noble-xwing
Version:
Typescript implementation of the X-Wing hybrid Post Quantum KEM using the noble library, as outlined in https://eprint.iacr.org/2024/039.
59 lines (58 loc) • 1.03 kB
JSON
{
"name": "noble-xwing",
"version": "0.5.0",
"type": "module",
"license": "MIT",
"scripts": {
"build": "tsc",
"test": "jest"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.js"
}
},
"dependencies": {
"@noble/curves": "^1.8.1",
"@noble/post-quantum": "^0.4.0"
},
"devDependencies": {
"@noble/ciphers": "^1.2.1",
"@types/jest": "^29.5.14",
"prettier": "3.5.1",
"ts-jest": "^29.2.5",
"typescript": "~5.7.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lukajcb/noble-xwing.git"
},
"keywords": [
"pqc",
"post-quantum",
"elliptic",
"curve",
"cryptography",
"ed25519",
"p256",
"p384",
"p521",
"ed448",
"x25519",
"ed25519",
"noble",
"ml-kem",
"ml-dsa",
"slh-dsa",
"kyber",
"dilithium",
"sphincs",
"fips203",
"fips204",
"fips205",
"edwards"
]
}