qnsqy 7.2.19 → 7.2.20
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/lib/manifest.json +10 -10
- package/package.json +2 -2
- package/postinstall.js +1 -1
package/lib/manifest.json
CHANGED
|
@@ -1,23 +1,23 @@
|
|
|
1
1
|
{
|
|
2
|
-
"qnsqy_version": "7.2.
|
|
3
|
-
"generated_at": "2026-
|
|
4
|
-
"source": "freshly built from qs-ultra/ source tree 2026-
|
|
2
|
+
"qnsqy_version": "7.2.20",
|
|
3
|
+
"generated_at": "2026-06-01T11:00Z",
|
|
4
|
+
"source": "freshly built from qs-ultra/ source tree 2026-06-01 (Ubuntu 22.04 / glibc 2.35 container build); matches website-YC/download.md SHA-256 Checksums (v7.2.20)",
|
|
5
5
|
"platforms": {
|
|
6
6
|
"linux-x64": {
|
|
7
|
-
"url": "https://cdn.quantumsequrity.com/linux/qnsqy_7.2.
|
|
8
|
-
"filename": "qnsqy_7.2.
|
|
7
|
+
"url": "https://cdn.quantumsequrity.com/linux/qnsqy_7.2.20-1_amd64.deb",
|
|
8
|
+
"filename": "qnsqy_7.2.20-1_amd64.deb",
|
|
9
9
|
"format": "deb",
|
|
10
10
|
"extract": "deb",
|
|
11
|
-
"sha256": "
|
|
11
|
+
"sha256": "93caee47f8af7c09f73373771ab116019d04903d6958369e865c77638e600afc",
|
|
12
12
|
"binary_path_in_archive": "usr/bin/qnsqy"
|
|
13
13
|
},
|
|
14
14
|
"win32-x64": {
|
|
15
|
-
"url": "https://cdn.quantumsequrity.com/windows/qnsqy-7.2.
|
|
16
|
-
"filename": "qnsqy-7.2.
|
|
15
|
+
"url": "https://cdn.quantumsequrity.com/windows/qnsqy-7.2.20-x86_64.exe",
|
|
16
|
+
"filename": "qnsqy-7.2.20-x86_64.exe",
|
|
17
17
|
"format": "exe",
|
|
18
18
|
"extract": "passthrough",
|
|
19
|
-
"sha256": "
|
|
20
|
-
"binary_path_in_archive": "qnsqy-7.2.
|
|
19
|
+
"sha256": "1383df812dff16cc593b0caab6bbe6092184a42f212aac8d13e42ed6a52b8f38",
|
|
20
|
+
"binary_path_in_archive": "qnsqy-7.2.20-x86_64.exe"
|
|
21
21
|
}
|
|
22
22
|
}
|
|
23
23
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "qnsqy",
|
|
3
|
-
"version": "7.2.
|
|
3
|
+
"version": "7.2.20",
|
|
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",
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"bugs": "https://quantumsequrity.com/contact",
|
|
26
26
|
"repository": {
|
|
27
27
|
"type": "git",
|
|
28
|
-
"url": "https://github.com/quantumsequrity/qnsqy.git"
|
|
28
|
+
"url": "git+https://github.com/quantumsequrity/qnsqy.git"
|
|
29
29
|
},
|
|
30
30
|
"license": "SEE LICENSE IN LICENSE",
|
|
31
31
|
"author": "Quantum Sequrity",
|
package/postinstall.js
CHANGED
|
@@ -21,7 +21,7 @@ const os = require('node:os');
|
|
|
21
21
|
const crypto = require('node:crypto');
|
|
22
22
|
const { spawnSync } = require('node:child_process');
|
|
23
23
|
|
|
24
|
-
const PKG_VERSION = '7.2.
|
|
24
|
+
const PKG_VERSION = '7.2.20';
|
|
25
25
|
const PKG_DIR = __dirname;
|
|
26
26
|
const BIN_DIR = path.join(PKG_DIR, 'bin');
|
|
27
27
|
const MANIFEST_PATH = path.join(PKG_DIR, 'lib', 'manifest.json');
|