qnsqy 7.2.22 → 7.2.24

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/LICENSE CHANGED
@@ -1,13 +1,14 @@
1
- QNSQY is proprietary software. (c) 2026 Quantum Sequrity.
1
+ QNSQY PROPRIETARY LICENSE
2
2
 
3
- The QNSQY binary, delivered as a platform-specific optional dependency of
4
- this package, is licensed under the QNSQY end-user license agreement,
5
- available at https://quantumsequrity.com/terms.
3
+ Copyright (c) 2026 Quantum Sequrity. All rights reserved.
6
4
 
7
- This npm wrapper package (the JavaScript shim, README, and LICENSE) is
8
- licensed for use solely to facilitate installation of the QNSQY binary,
9
- which is delivered as a platform-specific optional dependency. Redistribution
10
- of the wrapper without the binary, or modification of the wrapper to run a
11
- different binary, is not permitted.
5
+ 1. The QNSQY binary, delivered as a platform-specific optional dependency
6
+ of this package, is licensed under the QNSQY end-user license agreement:
7
+ https://quantumsequrity.com/terms
12
8
 
13
- Source-available for security audit on request: security@quantumsequrity.com.
9
+ 2. This npm wrapper package (the JavaScript shim, README, SECURITY.md, and
10
+ this LICENSE) may be used only to install and run the official QNSQY
11
+ binary. No other rights are granted.
12
+
13
+ 3. Source access for security audit is available on request:
14
+ security@quantumsequrity.com
package/SECURITY.md ADDED
@@ -0,0 +1,29 @@
1
+ # Security Policy
2
+
3
+ ## Supported Versions
4
+
5
+ We provide security updates for the latest stable release of QNSQY.
6
+
7
+ | Version | Supported |
8
+ | ------- | ------------------ |
9
+ | v7.2.x | :white_check_mark: |
10
+ | < v7.2 | :x: |
11
+
12
+ ## Reporting a Vulnerability
13
+
14
+ We take the security of QNSQY seriously. If you believe you have found a security vulnerability, please report it to us privately.
15
+
16
+ **Please do not open a public GitHub issue for security vulnerabilities.**
17
+
18
+ You can report vulnerabilities via:
19
+ - **Email:** security@quantumsequrity.com
20
+ - **Website:** https://quantumsequrity.com/contact
21
+
22
+ We will acknowledge receipt of your report within 48 hours and provide a timeline for remediation.
23
+
24
+ ## Our Security Model
25
+
26
+ QNSQY is built on NIST-standardized post-quantum algorithms (FIPS 203, 204, 205). Our security guarantees include:
27
+ - **Zero Telemetry:** Your data and keys never leave your machine.
28
+ - **Kernel Sandboxing:** (Linux only) Seccomp-BPF and Landlock enforced by default.
29
+ - **Memory Protection:** mlock(2) used to prevent secrets from being swapped to disk.
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "_comment": "SHA-256 of each platform binary, baked into the main qnsqy package (the trust root the user installs). The shim verifies the resolved platform binary against these before exec. Stamped by scripts/stage-platform-packages.sh at release time; empty values are placeholders that make the shim fail closed.",
3
- "linux-x64": "f40dc28c70d49670e39537b020780481fdf46a535f11e9f65131bd81249eadc0",
4
- "win32-x64": "1383df812dff16cc593b0caab6bbe6092184a42f212aac8d13e42ed6a52b8f38"
3
+ "linux-x64": "2aab9a6cddf40178616c2378f0c379d7d8d68c5b61c9b9b74260f08057bbe24c",
4
+ "win32-x64": "fad2f0aaa80457f301e7d65f08e94bdbe0ce85cfc76868a4358049bbe0706eaf"
5
5
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "qnsqy",
3
- "version": "7.2.22",
3
+ "version": "7.2.24",
4
4
  "description": "Post-quantum cryptography tool. NIST FIPS 203 / 204 / 205 algorithms hybridized with classical X25519, Ed25519, AES-256-GCM. Local-only execution. 84 MCP tools for AI agents.",
5
5
  "keywords": [
6
6
  "post-quantum",
@@ -22,15 +22,19 @@
22
22
  "model-context-protocol"
23
23
  ],
24
24
  "homepage": "https://quantumsequrity.com",
25
- "bugs": "https://quantumsequrity.com/contact",
25
+ "repository": {
26
+ "type": "git",
27
+ "url": "git+https://github.com/quantumsequrity/qnsqy.git"
28
+ },
29
+ "bugs": "https://github.com/quantumsequrity/qnsqy/issues",
26
30
  "license": "SEE LICENSE IN LICENSE",
27
31
  "author": "Quantum Sequrity",
28
32
  "bin": {
29
33
  "qnsqy": "bin/qnsqy.js"
30
34
  },
31
35
  "optionalDependencies": {
32
- "@quantumsequrity/qnsqy-linux-x64": "7.2.22",
33
- "@quantumsequrity/qnsqy-win32-x64": "7.2.22"
36
+ "@quantumsequrity/qnsqy-linux-x64": "7.2.24",
37
+ "@quantumsequrity/qnsqy-win32-x64": "7.2.24"
34
38
  },
35
39
  "engines": {
36
40
  "node": ">=18.0.0"
@@ -38,6 +42,7 @@
38
42
  "files": [
39
43
  "bin/",
40
44
  "README.md",
41
- "LICENSE"
45
+ "LICENSE",
46
+ "SECURITY.md"
42
47
  ]
43
48
  }