@quantumsequrity/qnsqy-win32-x64 7.2.21 → 7.2.23
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/README.md +35 -8
- package/package.json +12 -5
package/README.md
CHANGED
|
@@ -1,20 +1,47 @@
|
|
|
1
|
-
# qnsqy-win32-x64
|
|
1
|
+
# @quantumsequrity/qnsqy-win32-x64
|
|
2
2
|
|
|
3
3
|
Prebuilt [QNSQY](https://www.npmjs.com/package/qnsqy) binary for **Windows
|
|
4
|
-
x86_64
|
|
4
|
+
x86_64** (Windows 10 1809+ / Windows 11). QNSQY is a post-quantum
|
|
5
|
+
cryptography tool built on NIST FIPS 203 (ML-KEM), FIPS 204 (ML-DSA), and
|
|
6
|
+
FIPS 205 (SLH-DSA), hybridized with X25519, Ed25519, and AES-256-GCM.
|
|
5
7
|
|
|
6
|
-
|
|
8
|
+
## Do not install this package directly
|
|
9
|
+
|
|
10
|
+
This package only carries the platform binary. It is pulled in
|
|
7
11
|
automatically as an `optionalDependencies` entry of the main `qnsqy`
|
|
8
|
-
package, so
|
|
9
|
-
|
|
10
|
-
|
|
12
|
+
package, so `npm` downloads only the binary that matches your platform
|
|
13
|
+
(selected by the `os` / `cpu` fields). It contains **no install script and
|
|
14
|
+
makes no network calls**.
|
|
11
15
|
|
|
12
|
-
|
|
16
|
+
Install the main package instead:
|
|
13
17
|
|
|
14
|
-
```
|
|
18
|
+
```bash
|
|
15
19
|
npm install -g qnsqy
|
|
20
|
+
qnsqy --help
|
|
16
21
|
```
|
|
17
22
|
|
|
23
|
+
## Integrity
|
|
24
|
+
|
|
25
|
+
The main `qnsqy` package pins the SHA-256 of this binary and verifies it
|
|
26
|
+
before every run, so a substituted or tampered binary is refused. The same
|
|
27
|
+
bytes are published on the download page with SHA-256 checksums and an
|
|
28
|
+
ML-DSA-87 (FIPS 204) signature logged to the Sigstore Rekor transparency
|
|
29
|
+
log, and the binary self-verifies its embedded integrity hash at startup.
|
|
30
|
+
|
|
31
|
+
You can confirm the bytes match the official release:
|
|
32
|
+
|
|
33
|
+
```
|
|
34
|
+
certutil -hashfile node_modules\@quantumsequrity\qnsqy-win32-x64\qnsqy.exe SHA256
|
|
35
|
+
:: Compare against the Windows checksum on https://quantumsequrity.com/download
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
## Links
|
|
39
|
+
|
|
18
40
|
- Homepage: https://quantumsequrity.com
|
|
19
41
|
- Download page (checksums + PQ signatures): https://quantumsequrity.com/download
|
|
42
|
+
- Documentation: https://quantumsequrity.com/docs.html
|
|
20
43
|
- Security disclosure: security@quantumsequrity.com
|
|
44
|
+
|
|
45
|
+
## License
|
|
46
|
+
|
|
47
|
+
Proprietary. (c) 2026 Quantum Sequrity. See the bundled `LICENSE`.
|
package/package.json
CHANGED
|
@@ -1,13 +1,20 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quantumsequrity/qnsqy-win32-x64",
|
|
3
|
-
"version": "7.2.
|
|
3
|
+
"version": "7.2.23",
|
|
4
4
|
"description": "Prebuilt QNSQY binary for Windows x86_64. Installed automatically as an optional dependency of the `qnsqy` package. Do not install directly.",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"qnsqy",
|
|
7
|
+
"post-quantum",
|
|
8
|
+
"cryptography",
|
|
9
|
+
"pqc",
|
|
10
|
+
"quantum-safe",
|
|
11
|
+
"prebuilt-binary",
|
|
12
|
+
"windows",
|
|
13
|
+
"win32",
|
|
14
|
+
"x64"
|
|
15
|
+
],
|
|
5
16
|
"homepage": "https://quantumsequrity.com",
|
|
6
17
|
"bugs": "https://quantumsequrity.com/contact",
|
|
7
|
-
"repository": {
|
|
8
|
-
"type": "git",
|
|
9
|
-
"url": "git+https://github.com/quantumsequrity/qnsqy.git"
|
|
10
|
-
},
|
|
11
18
|
"license": "SEE LICENSE IN LICENSE",
|
|
12
19
|
"author": "Quantum Sequrity",
|
|
13
20
|
"os": [
|