TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Ask HN: Can cryptographic time-stamping protect our history from deepfakes?

3 pointsby axelsvenssonover 2 years ago
As the rate and quality of AI-generated content keeps increasing, it seems inevitable that it will become easier to create fake content and harder to verify&#x2F;refute it.<p>I keep thinking that &quot;someone&quot; could use cryptographic time-stamping as one line of defense. As a philanthropic effort, it seems relatively easy, cheap and valuable to do so. I imagine a web archive could save a stream of hashes not seen before, occasionally compile a merkle root and publish it in several places where time of publication is common knowledge.<p>Is this being done, else why not? It seems like an opportunity too good to pass on.

3 comments

muzaniover 2 years ago
I worked on a product that did something like this. Basically you&#x27;d take a photo with the app, it hashed some data on the photo along with some other personal data, uploaded that photo. Server checks the hash, and if matching, posted the verification in the blockchain.<p>This prevents tampering. But what about deepfakes?<p>First, we didn&#x27;t verify photos from gallery. That&#x27;s where most of your deepfakes would come from.<p>Second, you had to take a photo from the app. You can&#x27;t put an AI filter on the camera, because the app itself directly accesses the Android camera API. I think one possibility would be to hack this API to put the deepfake filter, but I don&#x27;t know any way to do this yet.<p>The consequence here is you can still have deepfakes, but you&#x27;ll probably see more of these verification apps. Probably suited for CCTVs, dash cams, news cameras. Maybe we&#x27;ll see it baked into hardware and operating systems in the future?
Someoneover 2 years ago
I don’t see how that would prevent deep-fakes from being made for past events.<p>Cryptographic time-stamping can show that a set of images existed at some time, but not that no other images existed at that time.<p>So, unless you manage to time-stamp most images in the world, there will be a huge set of images without provenance.<p>The creator of fake content will just add to that set.
评论 #32820902 未加载
axelsvenssonover 2 years ago
This can also be done anonymously for private files, as a feature of backup systems. That way, you could get the ability to prove to anyone that a certain piece of content was created before that timestamp. It would cost a minimal storage overhead, and the cost of time-stamping can actually decrease with more users.