qnsqy 7.2.23 → 7.2.25
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 +11 -10
- package/SECURITY.md +29 -0
- package/bin/integrity.json +2 -2
- package/package.json +10 -5
package/LICENSE
CHANGED
|
@@ -1,13 +1,14 @@
|
|
|
1
|
-
QNSQY
|
|
1
|
+
QNSQY PROPRIETARY LICENSE
|
|
2
2
|
|
|
3
|
-
|
|
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
|
-
|
|
8
|
-
|
|
9
|
-
|
|
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
|
-
|
|
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.
|
package/bin/integrity.json
CHANGED
|
@@ -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": "
|
|
4
|
-
"win32-x64": "
|
|
3
|
+
"linux-x64": "32d1290452f435bfac985eacb2188957e09de2ae1c61ec2306d08290de06d854",
|
|
4
|
+
"win32-x64": "ad37b52804bcb0d9f09ee2ed9d67334811352a61495d8250e07c6cf9dd39885e"
|
|
5
5
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "qnsqy",
|
|
3
|
-
"version": "7.2.
|
|
3
|
+
"version": "7.2.25",
|
|
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
|
-
"
|
|
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.
|
|
33
|
-
"@quantumsequrity/qnsqy-win32-x64": "7.2.
|
|
36
|
+
"@quantumsequrity/qnsqy-linux-x64": "7.2.25",
|
|
37
|
+
"@quantumsequrity/qnsqy-win32-x64": "7.2.25"
|
|
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
|
}
|