惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

I
InfoQ
博客园 - 司徒正美
爱范儿
爱范儿
F
Fortinet All Blogs
J
Java Code Geeks
量子位
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - 三生石上(FineUI控件)
腾讯CDC
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
S
SegmentFault 最新的问题
Microsoft Security Blog
Microsoft Security Blog
T
The Blog of Author Tim Ferriss
V
V2EX
L
LangChain Blog
aimingoo的专栏
aimingoo的专栏
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
云风的 BLOG
云风的 BLOG
T
Tailwind CSS Blog
Blog — PlanetScale
Blog — PlanetScale
GbyAI
GbyAI
A
About on SuperTechFans
有赞技术团队
有赞技术团队
Y
Y Combinator Blog

IBM Research

From error mitigation to fault-tolerant quantum computing | IBM Quantum Computing Blog A theoretical separation between quantum computers & LLMs Introducing IBM and NASA’s new foundation model for the Moon Switzerland's first IBM Quantum System Two | IBM Quantum Computing Blog Cleveland Clinic, RIKEN, IBM named Gordon Bell finalists | IBM Quantum Computing Blog How llm-d makes the most of the hardware you already have Ponder This Challenge - September 2026 - Loeschian Arithmetic Progressions IBM Quantum Nighthawk r2—more circuits, faster | IBM Quantum Computing Blog What happens when information theory accounts for reasoning? Granite 4.2 brings native reasoning to enterprise agents Qiskit Fermions: a modular toolbox for fermionic systems | IBM Quantum Computing Blog IBM’s new modular architecture for cryogenic systems | IBM Quantum Computing Blog QOBLIB: tracking progress in quantum optimization | IBM Quantum Computing Blog DocLang: a markup language for LLMs From vision to reality: a unified AI solver for the grid The search for quantum advantage in differential equations Ponder This Challenge - August 2026 - The Wheel of Buttons Quantum advantage through trusted quantum computation | IBM Quantum Computing Blog All of AI benchmarking at your fingertips What are spin qubits? | IBM Quantum Computing Blog IBM to acquire HRL Laboratories IBM commits $50M in quantum access for US Genesis Mission It’s time for cryptography to get its own abstraction layer This could be the largest synthetic code dataset yet How to measure the performance of a quantum computer | IBM Quantum Computing Blog Release News: Qiskit v2.5 is here! | IBM Quantum Computing Blog CoFrGeNets replace the ‘bones’ of transformer-based models How training environments can teach AI models to misbehave What’s new at IBM Quantum - Q2 2026 | IBM Quantum Computing Blog Modeling the chemistry of fusion reactor material | IBM Quantum Computing Blog
It’s time for cryptography to get its own abstraction layer
Navaneeth Rameshan, Gregoire Messmer, Silvio Dragone, Marc Stoec · 2026-07-17 · via IBM Research

There was a time when developers had to understand how data was physically stored just to write or read a file. They worked with tracks and sectors and wrote large amounts of code to manage storage details. Filesystems changed that: They introduced a stable abstraction and removed that burden from developers.

Networking followed the same path. Developers once had to implement retransmissions and reliability themselves. TCP/IP, accessed through the sockets API, moved that complexity into a shared layer and made network programming significantly simpler.

The field of cryptography has not yet made that jump. Even today, developers still write and maintain hundreds of lines of security-sensitive code to perform what should be straightforward operations: sign, verify, encrypt, and decrypt. We’ve had crypto libraries and APIs for decades — but they bake the algorithm choice into the calling code. Each use embeds detailed choices that are hard to change later. Over time, this leads to fragile systems and expensive technical debt.

The answer is cryptographic agility — but making it real has remained elusive.

But IBM Research is working to change that. Recently, at the Eurocrypt 2026 workshop on Migration and Agility in Cryptographic Systems (MAgiCS), we presented a principled approach to solving the cryptographic agility problem. The key insight is simple: those choices don’t belong in application code — they belong in a layer that can be governed and updated independently.

The ideas were first shared with a broader audience at the PKI Consortium conference in Kuala Lumpur in November 2025, and the feedback was clear. Cryptographic transitions consistently stall because developers carry both the implementation burden and the operational complexity.

Since the initial presentation, the work has moved from concept toward practice. Alongside the research papers, we have begun a partial, work-in-progress reference implementation and supporting documentation. The goal is to enable the community to test, validate, and shape this approach early — and to finally introduce the kind of abstraction layer for cryptography that storage and networking have had for decades.

Intent-based cryptography: from “how” to “what”

At its core, our idea is simple. Applications should not decide how cryptography is performed — they should only express what they need. The details of algorithms, parameters, and implementations move into a layer below, where they can be managed centrally and updated over time.

To make this a reality, we devised a new, intent-based API that introduces a vocabulary based on “scopes.” A scope represents a class of cryptographic intent, such as standard digital signatures or authenticated encryption. Within each scope, different algorithms can be used interchangeably because they share the same input and output structure. This allows systems to evolve without breaking application code. A scope says what is needed; policy decides which algorithm satisfies it — set centrally, not written into application code.

This shift fundamentally changes how cryptography is used. Developers no longer have to encode low-level decisions across hundreds of services. Instead, cryptographic behavior becomes an operational concern. Security teams can define which algorithms are allowed and how they are used. Systems then enforce these decisions consistently at runtime. This is the move SDN made for networks — separating the control plane that decides policy from the data plane that does the work. And because policy is decided and enforced in one place, auditors get a clear, reliable view of what was used and why.

Cryptographic systems must adapt continuously: keys are renewed, standards evolve, and much of the pressure comes not from new algorithms alone but from vulnerabilities, compliance requirements, and operational decisions. The ability to change implementations quickly — without touching application code — is therefore essential. An abstraction layer enables exactly that, treating cryptographic backends as interchangeable providers behind a single interface. The same operation can run on a software library, a hardware accelerator, a cloud service, or a trusted execution environment. Most importantly, it cleanly separates what is needed from how it is done, and where it runs.

Why now: PQC as a once-in-a-generation opportunity

Moving to PQC is not just about swapping algorithms. In reality, many systems cannot adopt PQC without significant changes first. Dependencies need to be upgraded, interfaces evolve, protocols change, and applications must be re-tested end to end. Many systems will require updates, such as newer runtime environments (e.g., Java 27+), support of TLS 1.3, or integration with latest versions of dependencies (with possibly new interfaces). In short, PQC is forcing a large-scale rearchitecture across the industry.

This moment creates a rare opportunity. Since software and systems must be revisited, this is the right time to fix a long-standing architectural gap. Instead of repeating today’s model with new algorithms, organizations can introduce a proper abstraction layer and move to a fundamentally better state.

Treating PQC as a one-time migration will only recreate the same challenges in the future. Cryptography will continue to evolve, and systems need to be designed for that reality. Introducing a cryptographic abstraction layer is therefore a move the industry would not regret. It reduces developer burden, strengthens governance, and turns future changes from costly engineering efforts into controlled operational decisions.

Try it, challenge it, help shape it

Filesystems and sockets once looked like unnecessary layers of indirection. A decade later, they became the obvious foundation of modern systems. Cryptography is ready for the same shift.

A specification only becomes meaningful when it is tested in practice. That is why, alongside the technical papers, we are releasing:

We invite developers, architects, and security teams to explore the work, challenge the assumptions, and help shape its evolution. Because the question is no longer whether cryptography will need to change again — it’s whether we are finally ready to make that change easy.

References