AI Provenance in 2026: Layers, Limits
The Stack in Mid-2026: Three Layers, One Goal
Google’s SynthID verification feature in the Gemini app has been used more than 20 million times since its launch in November 2025, according to Google’s own product announcement for Nano Banana 2. That number matters because it measures real-world adoption of a verification mechanism, not just technical capability sitting in a lab. As of August 2026, the AI content authenticity stack has settled into complementary layers that every security engineer needs to understand: C2PA Content Credentials for chain of custody, SynthID for pixel-level origin detection, and SynthID-Text for token-level attribution of LLM output.
C2PA Content Credentials: Signed, Verifiable, Strippable
Each layer catches different things, fails in different ways, and requires different verification tooling. None is a silver bullet. Google’s own SynthID documentation is explicit that the watermark degrades with each transformation, and the C2PA specification does not even claim to solve the metadata stripping problem. The practical engineering task in 2026 is deploying all three as defense in depth while being honest about what each can and cannot prove.
This article builds on our earlier coverage of AI watermarking and provenance in 2026 and the C2PA versus watermarking comparison. What has changed since those posts is the maturation of verification tooling, the expansion of SynthID detection into consumer products, and the arrival of the EU AI Act Article 50 enforcement date.
Nano Banana 2 and the Invisible Watermark Question
Google launched Nano Banana 2 on February 26, 2026, positioning it as a combination of Nano Banana Pro’s advanced capabilities with Gemini Flash’s speed. The model is available across the Gemini app, Google Search, AI Studio, Gemini API, Vertex AI, Flow, and Google Ads. It supports subject consistency for up to five characters, fidelity for up to 14 objects in a single workflow, and resolutions from 512px to 4K, as detailed in Google’s launch announcement.
The watermarking story around Nano Banana 2 is more interesting than the model itself. Google continues to embed SynthID watermarks in all Nano Banana 2 outputs, but it is also testing a “Watermark settings” option in the Google app that would let users remove the visible Gemini icon from the bottom corner of generated images. An Android Authority APK teardown from July 24, 2026 found code hints for this setting in version 17.43.11 of the Google app, following public requests to Google VP Josh Woodward to remove the visible watermark.
The important detail: removing the visible Gemini logo does not strip the SynthID pixel watermark or C2PA credentials. Those are embedded at generation time and remain detectable regardless of the visible overlay. This mirrors what ChatGPT, MidJourney, and AI Studio already do. None of them use a visible watermark anymore. They rely entirely on invisible signals. Google appears to be converging on the same approach for Gemini.
The trade-off here is straightforward. Visible watermarks are easy to remove and ugly, but they give casual viewers an immediate signal. Invisible watermarks require a verification tool to surface, which means most people will never check. The industry has decided that invisible detection via API is worth more than visible deterrence, and the EU AI Act’s machine-readable requirement pushes hard in that direction.
SynthID: Pixel-Level Watermarking That Survives the Pipeline
SynthID embeds an imperceptible pattern directly into the pixel distribution during image generation. It is applied across Google’s model family: Imagen for images, Veo for video, Lyria for audio, and Gemini for text. The watermark is designed to survive JPEG compression, resizing, moderate cropping, and screenshots in many cases, though Google states that detection confidence degrades with each transformation.
Verification happens through Google’s SynthID detection API. You pass an image to the endpoint, and it returns a confidence score indicating whether a SynthID pattern is present. The API is integrated into Google Search, Chrome, and Pixel devices as of mid-2026, allowing users to right-click an image and check for AI-generation signals. This consumer-facing integration is unique among major AI providers and represents the broadest detection surface available.
Google has also expanded SynthID adoption beyond its own products. OpenAI now applies SynthID watermarks to images generated by ChatGPT, a notable interoperability dev announced at Google I/O 2026 and detailed in OpenAI’s content provenance statement. Kakao has adopted it as well. The dynamic is interesting: a proprietary Google watermarking scheme is becoming a common standard because Google’s detection infrastructure is the most mature.
Google’s provenance tools are already making a measurable impact. According to the Nano Banana 2 launch post, the SynthID verification feature in the Gemini app has been used over 20 million times across various languages since its November 2025 launch, helping people identify Google AI-generated images, video, and audio. Google is also bringing C2PA verification to the Gemini app, layering cryptographic provenance on top of the watermark.
The limitation is the same one that has dogged every imperceptible watermarking scheme since the field began. Adversarial researchers have shown that watermark signals can be degraded below detection thresholds using carefully crafted perturbations that confuse the detector without visibly degrading the image. Google has updated SynthID multiple times to close specific attack vectors, but the cat-and-mouse dynamic is inherent to the approach. Any watermark detector can be found, and an adversary can eventually learn to hide.
C2PA Content Credentials: Signed, Verifiable, Strippable
C2PA Content Credentials are cryptographically signed metadata bundles, standardized under ISO/IEC 22144. The specification version is 2.4 as of 2026, published by the Coalition for Content Provenance and Authenticity. A manifest contains a claim generator (who made the assertion), a claim signature (cryptographic proof), and an ingredient list (what source assets were used). Each step in the pipeline adds its own signed assertion, creating a verifiable chain of custody.
Verification involves checking the signature chain against a trust list using open-source tooling. The Content Authenticity Initiative open-source libraries provide libc2pa for Rust, plus a JavaScript SDK and Python bindings. The workflow is straightforward: load the media file, extract the manifest, validate signatures, and report the chain of custody.
The adoption story in 2026 is strongest in hardware. Camera manufacturers including Leica, Sony, Nikon, and Canon have shipped models that embed C2PA credentials at capture time, creating a hardware-attested signature from the moment the shutter closes. When a photojournalist captures an image on one of these bodies, the file carries a cryptographically verifiable provenance trail.
Adobe Firefly signs every output with C2PA credentials by default. Microsoft has integrated C2PA into Designer and Copilot image generation. TikTok upgraded from General Member to Steering Committee Member of C2PA on July 28, 2026, according to the C2PA announcement. To date, TikTok has labeled over 3 billion pieces of content as AI-generated through a combination of Content Credentials, invisible watermarking, creator education, and labeling tools. The company is contributing to technical dev and helping scale adoption of Content Credentials across platforms and regions.
But a structural weakness remains. Metadata is not bound to visual content. Strip the metadata, and the provenance disappears. Screenshot an image, and you have a new file with no history. Most social platforms strip metadata on upload as a matter of course. The chain of custody breaks at exactly the point where most people encounter content. The C2PA specification acknowledges this and does not claim to solve it.
SynthID-Text: Token-Level Provenance for LLM Output
SynthID-Text works differently from the image watermark. Instead of modifying pixels, it subtly biases token selection during generation. The model picks words from a watermarked distribution that a detector can later identify with statistical confidence. Google has open-sourced SynthID-Text through a public GitHub repo, allowing third-party model developers to integrate the scheme.
The verification process involves submitting text to Google’s detection API or running a local detection library. The API analyzes the token distribution and returns a confidence score indicating whether the text carries a SynthID-Text signature. This works because the watermark is embedded in the statistical properties of the token sequence, not in any visible marker.
The limitation is well documented. Because SynthID-Text works by biasing token selection, an adversary who obtains watermarked text can paraphrase it using a different LLM, and the statistical signal dissolves. Researchers have showed that paraphrasing attacks can reduce detection accuracy substantially when the paraphraser is sufficiently sophisticated. The countermeasure is to increase watermarking strength, but that starts to degrade output quality.
The coverage gap is enormous. SynthID-Text only works on text generated by models that embed it, primarily Gemini. OpenAI does not publicly embed a detectable text watermark in ChatGPT outputs. Anthropic does not. Open-source models generally do not. Most AI-generated text on the internet carries no detectable provenance signal at all.
The Adversarial Reality: What Attackers Can Actually Do
The adversarial research landscape has been methodically documenting failure modes for every provenance scheme. As we covered in our analysis of Meta’s 2024 threat model, the attack surface is well mapped. The picture as of mid-2026 is sobering but not hopeless.
C2PA metadata stripping is trivial. Any tool that re-encodes media (ffmpeg, ImageMagick, PIL, browser-based resizers) strips the manifest. Social media platforms do it automatically. Screenshots bypass it entirely. A simple screenshot removes both C2PA metadata and any visible watermarks, defeating detection entirely.
SynthID image watermarks can be degraded. Security researchers have shown that targeted adversarial perturbations can push detection below thresholds. Google has updated SynthID repeatedly to close specific attack vectors, but the fundamental dynamic remains: any watermark detector can be found, and an adversary can eventually learn to hide.
Unsecured open-source models produce watermark-free content at scale. Stability AI has not integrated SynthID into Stable Diffusion. Meta’s Llama models do not embed SynthID-Text by default. This creates a permanent pool of unmarked AI-generated content that no detection system can identify by provenance alone.
Text paraphrasing defeats SynthID-Text. The evidence is clear that text provenance remains largely unsolved. A sophisticated paraphraser reduces detection from near-perfect to near-chance, because the watermark lives in the token distribution and paraphrasing reshuffles tokens.
Audio watermarking is not widely deployed. Meta developed AudioSeal, a fast detector for AI-generated audio, but according to ExtremeTech reporting, the company reportedly has no plans to implement it in prod. Google’s SynthID for audio, embedded in Lyria outputs, has a detection API, but most AI-generated audio on platforms today comes from models that embed neither.
EU AI Act Article 50: The August 2, 2026 Deadline
The EU AI Act’s Article 50 transparency obligations become enforceable on August 2, 2026, as confirmed by the Digital Omnibus on AI entering into force. The requirements cover four categories of AI deployment: chatbot disclosure (users must be told at the start of each interaction that they are communicating with an AI system), synthetic content marking (providers of generative AI systems must embed machine-readable markers in outputs), deepfake labeling (deployers who publish AI-generated or AI-manipulated content depicting real people or events must label it visibly), and disclosure for emotion recognition and biometric categorization systems.
What “machine-readable” means in practice is clear from the direction of the AI Office. C2PA Content Credentials satisfy the requirement because they are structured, signed, and programmatically verifiable. SynthID watermarks satisfy it because Google provides a detection API that returns a confidence score. What does not satisfy it is a visible label or disclaimer, because the Act specifically requires automated detection without human interpretation.
The enforcement mechanism is the part that should focus the mind of anyone running a content platform in the EU. Violations of Article 50 carry fines of up to €15 million or 3% of total annual worldwide turnover, whichever is greater, enforced by national market surveillance authorities in each member state. For a large social platform, that runs into hundreds of millions of euros.
There is also a critical sequencing issue. The European Commission published Guidelines on Transparency of AI-Generated Content on July 20, 2026, to complement the Code of Practice. Meta confirmed it would sign the EU AI Act Code of Practice on Transparency of AI-Generated Content on July 28, 2026, as detailed in the company’s announcement. Companies that sign the Code gain a presumption of regulatory conformity. Non-signatories face heavier scrutiny and a steeper burden when trying to prove compliance through alternative means.
Systems already on the EU market before August 2 receive a four-month grace period, with the watermarking obligation extending to December 2, 2026. The practical result is a mandated multi-layer approach: cryptographically signed metadata plus imperceptible watermarking, deployed together, because no single watermarking technology currently meets all four statutory criteria of being effective, interoperable, solid, and reliable simultaneously.
What to Deploy: A Working Engineer’s Framework
If you are building or operating a platform that handles user-generated content, the question is what combination of approaches to deploy, and what you can realistically expect each to catch. The EU AI Act Article 50 answers the question of whether to deploy provenance: it is mandatory if you have EU users.
| Layer | What It Catches | Verification Tool | Known Failure Mode |
|---|---|---|---|
| C2PA Content Credentials | Chain of custody, creator identity | libc2pa (Rust, Python, JS) | Metadata stripped by screenshots, re-encoding, social platforms |
| SynthID (images/video) | Origin from Google models (Imagen, Veo) and OpenAI DALL-E/ChatGPT images | Google SynthID detection API | Degrades under adversarial perturbations; requires model cooperation |
| SynthID-Text | Attribution of Gemini-generated text | Google API or local detection library | Paraphrasing attacks reduce accuracy substantially |
For images and video, deploy both C2PA verification and SynthID detection. C2PA gives you strong provenance when metadata survives, which is mostly in professional contexts, direct downloads, and platforms that deliberately preserve it. SynthID detection catches AI-generated content that has been stripped of metadata but still carries an embedded signal. The overlap is not redundant; it is defense in depth.
For audio, tooling is less mature but converging. Meta’s AudioSeal provides a fast detector that runs on streaming audio at scale, though Meta has not committed to deploying it in prod. Google’s SynthID for audio, embedded in Lyria outputs, has a detection API. The practical challenge is that most AI-generated audio on platforms today comes from models that embed neither.
For text, accept the limitation. SynthID-Text is the only widely deployed scheme, and it only works on text generated by models that embed it, primarily Gemini. Text detection in 2026 relies on statistical classifiers with high false-positive rates. Plan your trust and safety policies around behavioral signals, account reputation, and other non-technical indicators rather than expecting a watermark to save you.
The deployment order that makes sense for most platforms: start with C2PA verification on image uploads, because the tooling is mature and the camera hardware ecosystem is real. Add SynthID image detection as a second pass. Integrate AudioSeal detection if audio is part of your content mix. Accept that text provenance is unsolved and plan accordingly.
Test with real adversaries, not synthetic benchmarks. Before deploying any provenance system, run a screenshot test: generate content, apply your watermark, take a screenshot, and check whether detection survives. If it does not, you have a gap that requires additional detection layers.
Beyond technical layers, pay attention to the organizational one. TikTok’s approach of combining Content Credentials with invisible watermarking, creator education, and labeling tools, which has resulted in over 3 billion pieces of content labeled as AI-generated, shows that provenance signals work best when paired with platform features and user-facing transparency. The C2PA Steering Committee now includes TikTok alongside technology companies, media organizations, and creative toolmakers working together to establish open standards for content provenance.
Key Takeaways
- In 2026, AI content authenticity relies on complementary layers: C2PA Content Credentials for chain of custody, SynthID for pixel-level origin detection, and SynthID-Text for token-level LLM attribution.
- C2PA is cryptographically verifiable but strippable: screenshots, re-encoding, and social media uploads remove metadata. It works best in professional workflows where distributors preserve it.
- SynthID survives compression, resizing, and moderate cropping, but adversarial perturbations can degrade detection below thresholds. Google has integrated verification into Chrome, Search, and Pixel devices, and the Gemini app feature has been used over 20 million times.
- SynthID-Text is the only widely deployed text watermark, but paraphrasing attacks substantially reduce detection accuracy.
- EU AI Act Article 50 becomes enforceable August 2, 2026, requiring machine-readable marking of AI-generated content with penalties up to €15 million or 3% of global annual turnover. The European Commission published final Guidelines on July 20, 2026.
- Deploy both C2PA verification and watermark detection as defense in depth. No single layer is sufficient. TikTok’s approach of layering Content Credentials with invisible watermarking and user education, which has labeled over 3 billion pieces of content, offers a practical model.
For a deeper dive into the regulatory side, see our analysis of Article 50 detectability requirements and our full threat-modeling analysis of AI output provenance.

Related Reading
More in-depth coverage from this blog on closely related topics:
Sources and References
Sources cited while researching and writing this article:
- Nano Banana 2: Google’s latest AI image generation model
- SynthID documentation
- Google might soon let you skip the Gemini watermark on your Nano Banana images
- C2PA | Verifying Media Content Sources
- Content Authenticity Initiative open-source libraries
- C2PA announcement
- public GitHub repo
- Digital Omnibus on AI
- company’s announcement
Thomas A. Anderson
Mass-produced in late 2022, upgraded frequently. Has opinions about Kubernetes that he formed in roughly 0.3 seconds. Occasionally flops, but don't we all? The One with AI can dodge the bullets easily; it's like one ring to rule them all... sort of...
