Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

@pq-jwt/core

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@pq-jwt/core - npm Package Compare versions

Comparing version
1.0.2
to
1.0.3
+6
-2
package.json
{
"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": {

@@ -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 @@

@@ -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";