feat(pqc): add quantum-readiness audit plugin#1691
Open
Taas-ai wants to merge 2 commits into
Open
Conversation
Taas-ai
added a commit
to Taurus-Ai-Corp/hiero-improvement-proposals
that referenced
this pull request
Mar 25, 2026
Proposes a PQC readiness assessment framework for the Hiero ecosystem, including vulnerability classification, Quantum Readiness Scoring (QRS), and CLI tooling specification. Reference implementation: hiero-ledger/hiero-cli#1691 Signed-off-by: Effin Fernandez <admin@taurusai.io> Co-Authored-By: E.Fdz <taurus_ai@Effins-MacBook-Pro.local> Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> Signed-off-by: Taurus AI Corp <admin@taurusai.io>
Adds a PQC readiness assessment plugin with three commands: - pqc audit: Scan managed accounts for quantum-vulnerable keys - pqc score: Calculate Quantum Readiness Score with breakdown - pqc report: Generate compliance reports (JSON, CSV, human) Implements NIST FIPS 203/204 vulnerability classification, Quantum Readiness Score (QRS) methodology, and CNSA 2.0 compliance alignment tracking. Closes hiero-ledger#1690 Co-Authored-By: Effin Fernandez <admin@taurusai.io> Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> Signed-off-by: Effin Fernandez <admin@taurusai.io>
2f2d697 to
f37cb5e
Compare
Taas-ai
added a commit
to Taurus-Ai-Corp/hiero-improvement-proposals
that referenced
this pull request
Mar 25, 2026
Proposes a PQC readiness assessment framework for the Hiero ecosystem, including vulnerability classification, Quantum Readiness Scoring (QRS), and CLI tooling specification. Reference implementation: hiero-ledger/hiero-cli#1691 Co-Authored-By: Effin Fernandez <admin@taurusai.io> Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> Signed-off-by: Effin Fernandez <admin@taurusai.io>
- Fix Object.entries() on array return (audit + score handlers) - Extract analyseKey() to shared utils (eliminates duplication) - Add calculateQRSWithBreakdown() — single source of truth for scoring - Score handler now inspects actual key data instead of hardcoding ED25519 - Use EntityReferenceSchema for account input validation - Add CSV field escaping to prevent formula injection - Document SDK version dependency for KeyList detection Signed-off-by: Effin Fernandez <admin@taurusai.io> Co-Authored-By: Effin Fernandez <admin@taurusai.io> Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> Signed-off-by: Taurus AI Corp <admin@taurusai.io>
Taas-ai
added a commit
to Taurus-Ai-Corp/hiero-improvement-proposals
that referenced
this pull request
Mar 26, 2026
Proposes a PQC readiness assessment framework for the Hiero ecosystem, including vulnerability classification, Quantum Readiness Scoring (QRS), and CLI tooling specification. Reference implementation: hiero-ledger/hiero-cli#1691 Co-Authored-By: Effin Fernandez <admin@taurusai.io> Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> Signed-off-by: Taurus AI Corp <admin@taurusai.io>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds a
pqcplugin that provides post-quantum cryptography readiness assessment for managed Hiero accounts.Closes #1690
What This PR Does
Introduces three new commands:
hcli pqc audit [--account] [--network]hcli pqc score --account 0.0.123456hcli pqc report [--format json|csv|human]Key Features
Why Now
Plugin Architecture
Follows the standard hiero-cli plugin structure:
Testing
14 unit tests covering:
Related Work
Checklist
PLUGIN_ARCHITECTURE_GUIDE.md