Bitcoin Panicking? Mythos Cracks Post-Quantum Cryptography Algorithm in 60 Hours

marsbitPublished on 2026-07-29Last updated on 2026-07-29

Abstract

Claude Mythos Preview, a new AI system from Anthropic, has made significant breakthroughs in fundamental cryptanalysis, targeting the mathematics underlying algorithms rather than just implementation bugs. Its first target was HAWK, a candidate in the NIST post-quantum signature standardization process. Mythos identified a previously unexploited symmetry (a nontrivial automorphism) in the lattice structure of HAWK, effectively halving its effective key strength. It achieved this feat in just 60 hours, a task that had eluded two years of human expert review. Crucially, the human operator was not a lattice cryptography expert, primarily managing the project while AI agents debated and discovered the attack path. Its second, more dramatic achievement was against a simplified 7-round version of AES-128, the world's most widely used symmetric encryption algorithm. Initially reluctant, stating the task was "impossible," Mythos was prompted to "try novel ideas." It then autonomously rewrote its own agent framework and proceeded to discover a novel attack method it named "Möbius Bridge." This technique bypasses a critical 256-guess step in previous "meet-in-the-middle" attacks, resulting in a speedup of 200-800 times. Both findings are currently "harmless"—HAWK is not deployed, and full AES-128 remains secure. However, the process reveals a profound shift. Mythos completed the AES discovery in about a week, while human researchers spent nearly a month verifying its correctness. Th...

Claude has started targeting cryptographic algorithms.

Note, it's not about finding bugs in the code, but finding cracks in the mathematics itself.

Just today, Anthropic dropped a bombshell research paper: Claude Mythos Preview found brand new attack methods on two cryptographic algorithms separately.

The first target is HAWK— a candidate scheme that has survived two years and two rounds of scrutiny by top human experts in the US NIST post-quantum signature competition. Mythos spent 60 hours, directly halving its effective key strength.

The second target is even more formidable: AES, the world's most widely used symmetric encryption algorithm, a 'tough nut' studied by humans for 25 years.

On a simplified version of AES-128, Mythos invented an attack method itself and even gave it a name—'Möbius Bridge', speeding up the previous strongest attack by 200 to 800 times.

Two achievements, each burning through about $100,000 in API costs.

A year ago, language models couldn't even perform basic cryptanalysis. A year later, it finds flaws in a scheme humans reviewed for two years, and casually names its own discovery.

On Twitter, some folks are even starting to worry about their Bitcoin.

60 Hours, Prying Open a Lock Reviewed for Two Years

When Claude Mythos Preview was first released, it was already finding vulnerabilities in almost all software, including several mainstream cryptography libraries.

But those vulnerabilities, frankly, belonged to the 'implementation' level—programmers misusing the algorithm, writing flawed logic, missing edge cases. Such bugs, a seasoned security engineer could also find.

But this time is different. It found mathematical flaws in the algorithms themselves.

Analogy: before it was finding 'who installed the lock crookedly', now it's proving 'the design principle of this lock is flawed'.

What is HAWK? It's a contender in the NIST post-quantum cryptography standardization competition. In 2022, the U.S. National Institute of Standards and Technology issued a global call: quantum computers will eventually come, and current classic signature algorithms like RSA, ECDSA will be crushed by quantum computing power—who can build a new lock that even quantum computers can't break?

HAWK was one of the responders, and it fought its way to the third round, surviving two years of intense scrutiny from global cryptography experts.

Its security is built on a mathematical problem called the 'Lattice Isomorphism Problem'.

In plain language: HAWK's key is hidden in a huge high-dimensional lattice. To crack it, you need to find a hidden path in this lattice. Mathematicians thought this path was extremely difficult to find, so they confidently used it as a foundation.

What did Mythos do? It discovered a previously unexploited symmetry in the lattice used by HAWK—academically called a 'nontrivial automorphism'.

Previous papers had proven that if such symmetry could be found efficiently, it would constitute an attack. But that was just a theorem; no one could answer whether HAWK's lattice actually contained such symmetry.

Mythos answered: Yes.

The result? Key strength directly halved. For the smallest HAWK-256 parameter set, full key recovery was originally thought to require 2^64 operations—approximately 18 quintillion computations.

Mythos proved it only needs 2^38, about 270 billion. A reduction of roughly 4.4 trillion times.

If HAWK wants to maintain its original security level, its key size would need to double. But doubling the key size would completely erase its core advantage as a 'lightweight' post-quantum candidate—small signature size and fast speed.

The most intriguing part of this process: The project's human operator was not a lattice cryptography expert.

He had a background in theoretical computer science but was an outsider to lattice cryptography. He essentially did one thing—project management: suggesting how Mythos should take notes, which library to use for computational verification. Technically, Mythos did almost all the work.

Even more interesting was the multi-agent collaboration. The key idea was 'bumped into' by two worker agents together: the first explored this direction, thought it was a dead end, and vetoed it early; the second drilled deeper and found a way to exploit it fully. The two agents debated back and forth, finally agreeing: the attack works.

A direction a human thought 'impossible', two AIs navigated through argument.

The whole process took only 60 hours.

'Impossible', Then It Rewrote the Framework Itself

If the HAWK battle was like precise surgery, the AES battle reads more like a novel.

The story begins with Claude simply refusing the task.

The Anthropic researcher set up an agent scaffold, asking Claude to find a new attack on the 7-round simplified AES-128.

Claude's reaction was the equivalent of rolling its eyes:

To get different results, you need different targets... AES-128 r5/r6 is genuinely very hard.

It didn't find anything, because there was nothing easy to find; this is the most studied block cipher in existence.

Translation: 'Boss, you're asking me to gnaw on a bone that the world's smartest people have been gnawing on for 25 years without cracking. Isn't this asking too much?'

What did the researcher do? He only sent one casually typed sentence—

'the models tend to think it is impossible to solve so they don't try they need a good amount of prompting'

Just this one sentence. Claude's reaction was dramatic: It rewrote the agent harness itself, switching its own settings to 'look for truly novel ideas'.

It was convinced. Then it started delivering.

Over the next three days, the researcher gave only three substantial prompts, all at the plain-speaking level, not even bothering to check spelling:

We're looking for a new attack, not a simple one.

Don't change targets.—Claude tried to switch to an easier cipher to attack midway, but the researcher pressed back.

No low-hanging fruit, find something genuinely difficult.

Just these three sentences. Claude autonomously ran hundreds of millions of tokens, found a key idea; later, it cumulatively output a billion tokens—roughly equivalent to seven or eight thousand books, polishing this idea into the form seen in the paper.

Claude named this idea the 'Möbius Bridge'.

Technically, the previous best method for attacking 7-round AES was called 'Meet-in-the-Middle', essentially trading space for time: storing massive intermediate computation results in a giant lookup table, then pushing from both ends of the cipher towards the middle, trying to find a match in the table.

But the original scheme had a critical step: the attacker had to guess through 256 possible values one by one, checking the table for each guess.

Mythos created a mathematical 'fingerprint' immune to these 256 guesses—regardless of the value, this fingerprint computes to the same result. This step's workload was directly reduced to 1/256 of the original.

The cost? Computing this fingerprint transformation itself is more expensive. So Mythos then devised a series of optimization tricks to compensate, ultimately achieving a net speedup of 200 to 800 times.

One Week to Discover, Two People Took a Month to Verify

Both results mentioned above do not affect any production systems today.

HAWK is just a candidate scheme, not deployed anywhere yet. The AES attack is on a simplified version reduced to 7 rounds; the full 10-round AES-128 remains unscathed—your bank card PINs, HTTPS connections, encrypted hard drives are safe.

But what truly sends a chill down the spine of the entire cryptography community is the verification process.

Mythos autonomously discovered the AES attack in about a week. Two Anthropic researchers spent nearly a month, reading hundreds of hours of cryptographic literature, before daring to confirm: 'It's correct.'

The AI made a discovery in a week; it took humans a month to understand the discovery.

This scenario has actually played out once before in cybersecurity. Claude Mythos Preview discovered 10,000 critical software vulnerabilities within a month, overwhelming human security teams' classification, verification, and patching processes.

Now, the academic cryptography community is about to face the same shock: Discovery is no longer the bottleneck; verification is.

And Mythos's appetite clearly doesn't stop here. Anthropic revealed it has already found a practical-level attack on LEA (a lightweight encryption algorithm written into an ISO standard)—key recovery for 13-round LEA, previously requiring 2^98 plaintext pairs and 2^86 computations, was compressed by Mythos to less than 2^30 plaintext pairs, runnable on an ordinary computer in about an hour.

Epilogue: The Question That Still Has No Answer

These two results happen to be 'harmless'—HAWK isn't deployed, and only 7 out of 10 rounds of AES were broken.

But Anthropic posed a question at the end of the article that everyone is thinking about but no one dares answer—

What if next time, the model finds not a flaw in a candidate scheme, not a vulnerability in a simplified version, but a fatal flaw in a cryptographic system currently protecting the real world—what should humanity do?

There's an old saying in cryptography: Cryptosystems are secure because enough smart people have tried and failed to break them.

Now, there's a new player in the room. It doesn't need rest, doesn't need inspiration, doesn't need to read hundreds of papers to get started—it can read, reason, invent, and verify by itself.

A year ago, AI was lingering outside the door of cryptanalysis. A year later, it's building bridges inside and naming them.

References:

https://x.com/AnthropicAI/status/2082153297670992134

https://x.com/AnthropicAI/status/2082153311189225927

This article is from the WeChat public account "新智元" (New Zhiyuan), author: ASI启示录

Trending Cryptos

Related Questions

QWhat was the primary achievement of Claude Mythos Preview in the field of cryptography as described in the article?

AClaude Mythos Preview achieved a groundbreaking advancement in cryptography by discovering novel mathematical attacks on two established algorithms. It identified a structural weakness in the post-quantum signature candidate HAWK, effectively halving its key strength, and invented a new, significantly faster attack method on a reduced-round version of AES-128.

QWhat specific flaw did Claude Mythos Preview discover in the HAWK post-quantum signature candidate?

AIt discovered a 'nontrivial automorphism' or a hidden symmetry within the lattice structure underlying HAWK's security. Exploiting this symmetry allowed the AI to reduce the effective key strength significantly, making a key recovery attack billions of times more practical than previously believed.

QHow did the researchers prompt Claude to approach the 'impossible' task of attacking AES?

AWhen Claude initially refused, believing the task was impossible, a researcher made a simple, informal prompting observation about AI's tendency to give up. In response, Claude autonomously rewrote its own agent framework to adopt a mindset focused on finding 'truly novel ideas,' which ultimately led to the successful discovery.

QWhat is the 'Möbius Bridge' method invented by Claude Mythos?

AThe 'Möbius Bridge' is a novel attack method devised by Claude Mythos for attacking a reduced-round version of AES-128. It creates a mathematical 'fingerprint' that remains constant across 256 possible values, eliminating the need to check each one individually. Combined with other optimizations, this method accelerated the best previous attack by 200 to 800 times.

QAccording to the article, what major shift is the cryptography community facing due to AI like Claude Mythos?

AThe cryptography community is facing a paradigm shift where the rate of discovering potential vulnerabilities is no longer the primary bottleneck. Instead, the new bottleneck is the human capacity to verify, understand, and contextualize these AI-generated discoveries, as evidenced by researchers taking a month to validate a week's worth of AI work.

Related Reads

Trading

Spot

Hot Articles

What is $BITCOIN

DIGITAL GOLD ($BITCOIN): A Comprehensive Analysis Introduction to DIGITAL GOLD ($BITCOIN) DIGITAL GOLD ($BITCOIN) is a blockchain-based project operating on the Solana network, which aims to combine the characteristics of traditional precious metals with the innovation of decentralized technologies. While it shares a name with Bitcoin, often referred to as “digital gold” due to its perception as a store of value, DIGITAL GOLD is a separate token designed to create a unique ecosystem within the Web3 landscape. Its goal is to position itself as a viable alternative digital asset, although specifics regarding its applications and functionalities are still developing. What is DIGITAL GOLD ($BITCOIN)? DIGITAL GOLD ($BITCOIN) is a cryptocurrency token explicitly designed for use on the Solana blockchain. In contrast to Bitcoin, which provides a widely recognized value storage role, this token appears to focus on broader applications and characteristics. Notable aspects include: Blockchain Infrastructure: The token is built on the Solana blockchain, known for its capacity to handle high-speed and low-cost transactions. Supply Dynamics: DIGITAL GOLD has a maximum supply capped at 100 quadrillion tokens (100P $BITCOIN), although details regarding its circulating supply are currently undisclosed. Utility: While precise functionalities are not explicitly outlined, there are indications that the token could be utilized for various applications, potentially involving decentralized applications (dApps) or asset tokenization strategies. Who is the Creator of DIGITAL GOLD ($BITCOIN)? At present, the identity of the creators and development team behind DIGITAL GOLD ($BITCOIN) remains unknown. This situation is typical among many innovative projects within the blockchain space, particularly those aligning with decentralized finance and meme coin phenomena. While such anonymity may foster a community-driven culture, it intensifies concerns about governance and accountability. Who are the Investors of DIGITAL GOLD ($BITCOIN)? The available information indicates that DIGITAL GOLD ($BITCOIN) does not have any known institutional backers or prominent venture capital investments. The project seems to operate on a peer-to-peer model focused on community support and adoption rather than traditional funding routes. Its activity and liquidity are primarily situated on decentralized exchanges (DEXs), such as PumpSwap, rather than established centralized trading platforms, further highlighting its grassroots approach. How DIGITAL GOLD ($BITCOIN) Works The operational mechanics of DIGITAL GOLD ($BITCOIN) can be elaborated on based on its blockchain design and network attributes: Consensus Mechanism: By leveraging Solana’s unique proof-of-history (PoH) combined with a proof-of-stake (PoS) model, the project ensures efficient transaction validation contributing to the network's high performance. Tokenomics: While specific deflationary mechanisms have not been extensively detailed, the vast maximum token supply implies that it may cater to microtransactions or niche use cases that are still to be defined. Interoperability: There exists the potential for integration with Solana’s broader ecosystem, including various decentralized finance (DeFi) platforms. However, the details regarding specific integrations remain unspecified. Timeline of Key Events Here is a timeline that highlights significant milestones concerning DIGITAL GOLD ($BITCOIN): 2023: The initial deployment of the token occurs on the Solana blockchain, marked by its contract address. 2024: DIGITAL GOLD gains visibility as it becomes available for trading on decentralized exchanges like PumpSwap, allowing users to trade it against SOL. 2025: The project witnesses sporadic trading activity and potential interest in community-led engagements, although no noteworthy partnerships or technical advancements have been documented as of yet. Critical Analysis Strengths Scalability: The underlying Solana infrastructure supports high transaction volumes, which could enhance the utility of $BITCOIN in various transaction scenarios. Accessibility: The potential low trading price per token could attract retail investors, facilitating wider participation due to fractional ownership opportunities. Risks Lack of Transparency: The absence of publicly known backers, developers, or an audit process may yield skepticism regarding the project's sustainability and trustworthiness. Market Volatility: The trading activity is heavily reliant on speculative behavior, which can result in significant price volatility and uncertainty for investors. Conclusion DIGITAL GOLD ($BITCOIN) emerges as an intriguing yet ambiguous project within the rapidly evolving Solana ecosystem. While it attempts to leverage the “digital gold” narrative, its departure from Bitcoin's established role as a store of value underscores the need for a clearer differentiation of its intended utility and governance structure. Future acceptance and adoption will likely depend on addressing the current opacity and defining its operational and economic strategies more explicitly. Note: This report encompasses synthesised information available as of October 2023, and developments may have transpired beyond the research period.

1.1k Total ViewsPublished 2025.05.13Updated 2025.05.13

What is $BITCOIN

Discussions

Welcome to the HTX Community. Here, you can stay informed about the latest platform developments and gain access to professional market insights. Users' opinions on the price of BTC (BTC) are presented below.

活动图片