@pq-jwt/core
Advanced tools
+6
-2
| { | ||
| "name": "@pq-jwt/core", | ||
| "version": "1.0.2", | ||
| "version": "1.0.3", | ||
| "description": "Post-quantum JWT library using NIST-standardized ML-DSA and SLH-DSA. Drop-in successor to RS256/ES256.", | ||
@@ -28,3 +28,7 @@ "type": "module", | ||
| ], | ||
| "author": "Sachin Ruhil", | ||
| "author": { | ||
| "name": "Sachin Ruhil", | ||
| "email": "sachinruhil11@gmail.com", | ||
| "url": "https://github.com/ruhil6789" | ||
| }, | ||
| "license": "MIT", | ||
@@ -31,0 +35,0 @@ "dependencies": { |
+10
-0
@@ -0,1 +1,11 @@ | ||
| /** | ||
| * @package @pq-jwt/core | ||
| * @author Sachin Ruhil <sachinruhil11@gmail.com> | ||
| * @version 1.0.2 | ||
| * @license MIT | ||
| * @description Post-quantum JWT library — NIST FIPS 204 (ML-DSA) + FIPS 205 (SLH-DSA) | ||
| * @copyright 2025 Sachin Ruhil. All rights reserved. | ||
| * @see https://github.com/ruhil6789/PQ-JWT | ||
| */ | ||
| export type Algorithm = 'ML-DSA-44' | 'ML-DSA-65' | 'ML-DSA-87' | 'SLH-DSA-SHA2-128s'; | ||
@@ -2,0 +12,0 @@ |
+10
-0
@@ -0,1 +1,11 @@ | ||
| /** | ||
| * @package @pq-jwt/core | ||
| * @author Sachin Ruhil <sachinruhil11@gmail.com> | ||
| * @version 1.0.2 | ||
| * @license MIT | ||
| * @description Post-quantum JWT library — NIST FIPS 204 (ML-DSA) + FIPS 205 (SLH-DSA) | ||
| * @copyright 2025 Sachin Ruhil. All rights reserved. | ||
| * @see https://github.com/ruhil6789/PQ-JWT | ||
| */ | ||
| import { ml_dsa44, ml_dsa65, ml_dsa87 } from "@noble/post-quantum/ml-dsa.js"; | ||
@@ -2,0 +12,0 @@ import { slh_dsa_sha2_128s } from "@noble/post-quantum/slh-dsa.js"; |
21079
3.77%343
5.54%