@quantumsequrity/qnsqy-linux-x64
v7.2.25
Published
Prebuilt QNSQY binary for Linux x86_64. Installed automatically as an optional dependency of the `qnsqy` package. Do not install directly.
Maintainers
Readme
@quantumsequrity/qnsqy-linux-x64
Prebuilt QNSQY binary for Linux x86_64 (glibc 2.35+). QNSQY is a post-quantum cryptography tool built on NIST FIPS 203 (ML-KEM), FIPS 204 (ML-DSA), and FIPS 205 (SLH-DSA), hybridized with X25519, Ed25519, and AES-256-GCM.
Do not install this package directly
This package only carries the platform binary. It is pulled in
automatically as an optionalDependencies entry of the main qnsqy
package, so npm downloads only the binary that matches your platform
(selected by the os / cpu fields). It contains no install scripts
and makes no network calls during installation.
Install the main package instead:
npm install -g qnsqy
qnsqy --helpWhat the binary does
One executable, four run modes: command line (qnsqy), terminal UI
(qnsqy --tui), desktop GUI (qnsqy --gui), and an MCP server for AI
agents (qnsqy --mcp, 84 tools). Core operations:
- Encrypt / decrypt with hybrid post-quantum envelopes: ML-KEM (512/768/1024) combined with X25519, sealed with AES-256-GCM or XChaCha20-Poly1305, passwords stretched with Argon2id.
- Sign / verify with ML-DSA (44/65/87) combined with Ed25519, plus SLH-DSA, FN-DSA, and LMS / HSS (SP 800-208) on higher tiers.
- Hash / verify-integrity with BLAKE3, SHA-2, and SHA-3.
- Key tools: keygen, key import/export, password vault, multi-recipient encryption, M-of-N threshold encryption, Shamir secret sharing, key escrow, time-lock encryption.
- Migration: scan data for legacy classical cryptography and re-encrypt it under post-quantum algorithms.
- Audit logging with hash-chained entries and SIEM/CSV/JSON export.
All cryptographic operations run locally. Plaintext, passwords, and private keys never leave the machine.
Linux-specific hardening
The Linux build carries the strongest sandbox in the product line:
- seccomp-bpf network drop: after subscription authorization, a one-way kernel filter permanently removes network access before any cryptographic operation touches plaintext or keys.
- Landlock filesystem scoping restricts which paths the process can reach.
- Memory hygiene: mlock(2) to keep secrets out of swap, zeroization of key material, core dumps disabled.
Integrity model (defense in depth)
- npm shim pinning. The main
qnsqypackage shipsbin/integrity.jsonwith the SHA-256 of this binary. The shim verifies the hash before every run and refuses to execute a substituted or tampered binary. - Startup self-check. The binary verifies its own embedded integrity hash at startup.
- Release manifest signature. The same bytes are published on the
download page and listed in
checksums.txt, which is signed with an ML-DSA-87 (FIPS 204, security category 5) post-quantum signature made with an offline release key. Verify with any QNSQY install:qnsqy verify-release checksums.txt checksums.txt.sig - Sigstore transparency log. The release manifest is additionally signed keylessly from the public GitHub repository's CI identity and recorded in the Sigstore Rekor transparency log, so the release history is publicly auditable.
Manual hash check:
sha256sum node_modules/@quantumsequrity/qnsqy-linux-x64/qnsqy
# Compare against the Linux checksum on https://quantumsequrity.com/downloadSupported platforms
| Target | Status |
|--------|--------|
| Linux x86_64, glibc 2.35+ (Ubuntu 22.04+, Debian 12+, Fedora 36+, RHEL 9+) | supported (this package) |
| Windows 10 1809+ / 11 x86_64 | use @quantumsequrity/qnsqy-win32-x64 |
| macOS | in development |
Native .deb / .rpm packages and signed repositories are also
available on the download page if you prefer the system package manager
over npm.
Troubleshooting
- "integrity mismatch" from the shim: the binary on disk does not
match the pinned SHA-256. Reinstall with
npm install -g qnsqy --force. If it persists, treat it as a security signal and compare hashes against the download page. - glibc errors on old distributions: the binary requires glibc 2.35
or newer. Check with
ldd --version. Use a newer distribution or the static download from the website. - Running a pre-staged binary (air-gapped or mirrored installs): set
QNSQY_BINARY_PATHto an absolute path and the shim will verify and run that binary instead of the packaged one. - Version note: the npm package version can be ahead of the binary's
self-reported
qnsqy versionwhen a release only changes packaging. The binary version is authoritative for cryptographic behavior.
Links
- Homepage: https://quantumsequrity.com
- Download page (checksums + post-quantum signatures): https://quantumsequrity.com/download
- Documentation: https://quantumsequrity.com/docs.html
- Wrapper source: https://github.com/quantumsequrity/qnsqy
- Issues: https://github.com/quantumsequrity/qnsqy/issues
- Security disclosure: [email protected]
License
Proprietary. (c) 2026 Quantum Sequrity. See the bundled LICENSE.
Source access for security audit is available on request.
