TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

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

3 点作者 axelsvensson超过 2 年前
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 条评论

muzani超过 2 年前
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?
Someone超过 2 年前
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 未加载
axelsvensson超过 2 年前
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.