feat(hardware): introduce Perceptual Hash (pHash) for compression-resilient ZK verification#35
Open
Tenerife-Q wants to merge 2 commits intoc2siorg:mainfrom
Open
feat(hardware): introduce Perceptual Hash (pHash) for compression-resilient ZK verification#35Tenerife-Q wants to merge 2 commits intoc2siorg:mainfrom
Tenerife-Q wants to merge 2 commits intoc2siorg:mainfrom
Conversation
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.
feat(hardware): add pHash to handle image compression
The current SHA256-based logic is a bit too "brittle"—even a tiny bit of compression during network transit breaks the entire ZK verification. To fix this, I’ve added Perceptual Hashing (pHash) support on the hardware side.
What I did:
imagehashandPillowto generate a visual fingerprint of the photo at capture time.PHASH_AVAILABLE) so the app doesn't crash if these libraries aren't installed.pHashinto the upload metadata.The Bigger Picture:
This is actually the first step for my GSoC 2026 proposal. My plan is to use this pHash inside a RISC Zero ZK circuit (using Rust) to calculate Hamming Distance. This way, the system can mathematically tolerate minor compression while still blocking AI-generated fakes.
This approach is inspired by my research on image forensics in the "Yuanjing" project. Excited to see this moving forward!

