Sovereign Data Infrastructure

NICSI Ultimate Shield

A comprehensive technical and governance orientation prepared exclusively for the Chief Information Security Officer (CISO) and senior risk leadership of NICSI.

00 — How to Read This Document

You have likely been handed many "post-quantum" security decks this procurement cycle. The majority of those decks ask you to trust a proprietary algorithm, a vendor's internal audit report, or a certification that expires before your data risk does. This document operates on a different premise: every claim is falsifiable from your own Linux terminal, without vendor involvement, before you sign anything.

03 — The Constant

Whether a security platform can reach into your estate is not a policy question — it is a question about what is in the code.

05 — The Evidence

This section gives you the exact byte length of the signature and tells you how to measure it yourself in thirty seconds.

06 — The 3 A.M. Scenario

The real attack on encryption is entropy exhaustion. This section is the replayable test of what the system does when it fails.

01 — The Three Questions Your Board Asks

The Board Asks

Are we exposed to Harvest Now, Decrypt Later?

The Loop

Loop 1 — Bulk Encryption

What CQWS Delivers

Information-Theoretic Security via OTP: mathematically impossible to decrypt even with quantum compute.

The Board Asks

Can we protect data without collapsing the network?

The Loop

Loop 2 — Kernel Routing

What CQWS Delivers

Gigabit wire-speed throughput via Ring-0 kernel hook; verified with automated iperf3 benchmarks.

The Board Asks

Can we prove it works to our auditors?

The Loop

Loop 3 — Audit

What CQWS Delivers

Independent NIST SP 800-22 STS battery script; Shannon Entropy > 7.999 bits/byte on live traffic.

03 — What CQWS Cannot Do (The Permitted / Prohibited Matrix)

The Platform MAY

  • ENCRYPTOutbound TCP payloads using Pauli-matrix OTP logic before they leave the kernel.
  • DROPInbound packets that fail the ZTNA Dilithium stealth authentication check at Ring-0.
  • INTERCEPTLayer 7 application-layer attack patterns (e.g. SQL injection) via the WAF operating at Ring-0.
  • MEASUREInbound connection rates and trigger automatic connection throttling for DDoS mitigation.

The Platform MAY NOT

  • EXFILTRATESend cryptographic key material, packet contents, or telemetry off the server to any external endpoint.
  • TERMINATEKill, suspend, or modify any user-space process or system service.
  • LOCKOUTDisable, modify, or query any Active Directory account, Kerberos ticket, or user credential.
  • COMMUNICATEInitiate any outbound connection to a vendor server, licensing authority, or analytics endpoint.

04 — The Hybrid Entropy Pool

CQWS does not trust any single source of randomness. The hybrid_entropy_mix() function XOR-combines four independent entropy sources before any OTP key material is derived. Even if three sources are completely compromised, the output remains cryptographically secure.

1. Host OS CSPRNG

Linux /dev/urandom — ChaCha20 DRBG seeded from the kernel entropy pool.

Software Layer

2. CPU Hardware

Intel RDRAND / RDSEED — hardware RNG built into the CPU, sourcing from thermal noise.

Hardware Layer

3. Interrupt Timing

Nanosecond-resolution measurement of CPU interrupt arrival timing (jiffies).

Physical Process Layer

4. PCIe QRNG

Dedicated Quantum Random Number Generator sourcing from quantum physical processes.

Quantum Layer

06 — The 3 A.M. Scenario

03:00

Reconnaissance Scan Begins

Adversary's nmap runs against the server's IP range, probing all 65,535 TCP ports.

CQWS Response

ZTNA Stealth Hook intercepts. Packets lack ML-DSA-65 signature. Dropped at Ring-0. No TCP ACK or RST.

03:02

Traffic Amplification

Adversary sends high-volume spoofed UDP traffic to exhaust the server's entropy pool.

CQWS Response

Hybrid pool monitors real-time health. Network throughput on authenticated connections begins to throttle.

03:05

Entropy Pool Critical

Entropy pool drops critically low. Genuine OTP key quality cannot be guaranteed.

CQWS Response (Fail Closed)

CQWS severs active connections rather than encrypting with a degraded key. Network connectivity is interrupted.

03:07

Entropy Recovery

PCIe QRNG and RDRAND sources reseed the pool. CQWS resumes normal operation.

CQWS Response

Network connectivity restores. Graceful Degradation event is logged with start time, duration, and entropy floor value.

07 — Verify It Yourself (The Commands)

Command / ActionVerified PropertyExpected Result
cat cqws_ultimate.cThe ConstantA single C source file. No socket() calls to external endpoints, no persistent key storage.
cat cqws_ultimate.c | grep memzero_explicitKey Destructionmemzero_explicit() appears at every site where OTP key material is consumed in the encryption loop.
Wireshark CapturePost-Quantum AuthSignature payload: exactly 3,309 bytes. Matches NIST FIPS 204 ML-DSA-65 specification.
nmap <server_ip>ZTNA Stealth HookAll ports report as filtered (no response). Server appears not to exist to scanning host.
./CQWS_NIST_Auditor.shEntropy QualityShannon Entropy > 7.999 bits/byte across all 15 NIST SP 800-22 STS tests on a live traffic sample.

Appendix B — Glossary of Terms

CRQC

Cryptographically Relevant Quantum Computer. A quantum computer of sufficient scale and error-correction to run Shor's algorithm against RSA-2048 in practical time. Estimates place availability at 2030-2035.

Information-Theoretic Security (ITS)

Security that holds regardless of the computational power of an adversary. Distinct from computational security. OTP provides ITS.

memzero_explicit()

A Linux kernel function that zeroes a memory region and is guaranteed by the compiler not to be optimised away. CQWS uses it to destroy OTP key material immediately after use.

MLWE (Module Learning With Errors)

The mathematical hardness assumption underlying CRYSTALS-Dilithium. No known efficient quantum algorithm exists for MLWE, making it a credible post-quantum security foundation.