Microsoft · Filed Mar 6, 2025 · Published Sep 10, 2026 · verified — real USPTO data

Microsoft Patents a Way to Hide How Its AI Models Think

When an AI model runs, the pattern of its calculations can leak sensitive information to a skilled attacker, even without access to the model itself. Microsoft has patented a system that shuffles those calculations into a different order each time, making that kind of eavesdropping much harder.

A laptop sends a request to a server, which processes it and returns a response, illustrating a basic client-server interaction. Drawing from patent filing US 2026/0267943 A1.
A laptop sends a request to a server, which processes it and returns a response, illustrating a basic client-server interaction.
See all 4 drawings from this filing ↓
Publication number US 2026/0267943 A1
Applicant Microsoft Technology Licensing, LLC
Filing date Mar 6, 2025
Publication date Sep 10, 2026
Inventors Aditya Vasanth CHALLAPALLY
CPC classification 713/189
Grant likelihood Medium
Examiner WANG, HARRIS C (Art Unit 2439)
Status Final Rejection Mailed (Sep 3, 2026)
Document 20 claims

What Microsoft's AI execution-scrambling actually does

You're running a secure AI service and a hacker can't see inside your servers directly, but they can watch how long each calculation takes and use that timing data to piece together what your AI model is doing or even what data it's processing. That's called a side-channel attack, and it's a real threat to AI systems that handle private information.

Microsoft's patent describes a system that defends against this by shuffling the order in which an AI model does its work. Many of the steps inside a neural network don't actually depend on each other, so they can be run in any sequence without changing the final answer. The system figures out which steps those are, then scrambles their order randomly every time the model runs.

The result is that an outside observer watching timing patterns sees something different on every request, even if the input data is identical. The AI still gives you the correct answer, but the trail of breadcrumbs an attacker might follow looks like noise.

From the filing · CLAIM 1
… generating, by the processor, using a pseudo-random number generator, randomization parameters for determining an execution order of the independent operations within the machine-learning model that are performed during the inference task; …

Translation: It uses a random number generator to shuffle the steps the AI takes to solve a problem.

How the randomization engine reorders AI operations

The patent describes a method for protecting machine-learning models during inference (the phase when a trained AI model answers questions or makes predictions, as opposed to the training phase when it learns).

The core mechanism works in several steps:

  • The system builds a computational graph, a map of every operation the model needs to perform and which operations depend on the outputs of others. Think of it like a recipe where some steps must happen in order (you can't frost a cake before you bake it) and others can happen in any order (you can chop nuts before or after you mix the batter).
  • It identifies which operations are truly independent of each other, meaning reordering them won't change the final output.
  • A pseudo-random number generator (a controlled randomness engine, like a dice-roller that follows a hidden pattern) assigns a new execution order to those independent operations every time a request comes in.
  • The model runs in that randomized order and delivers the correct result to whoever requested it.

Because the sequence of operations changes with every inference call, an attacker watching the processor's timing or memory access patterns can't build a reliable fingerprint of the model's behavior. The patent also describes a monitoring component that watches for unusual execution patterns and a performance component that tries to keep the overhead of all this shuffling from slowing things down too much.

From the filing · THE ABSTRACT
The system generates randomized computational patterns to mask the actual processing flow during inference and training, preventing information leakage via side-channel attacks.

Translation: It scrambles the AI's processing steps to stop outsiders from spying on how it thinks.

What this means for AI security in cloud services

Side-channel attacks on AI models are a growing concern as companies deploy neural networks to process medical records, financial data, and proprietary business information in shared cloud environments. An attacker who can map a model's execution pattern might be able to infer what kind of data it's processing, or even reconstruct parts of the model itself, without ever breaking encryption.

Microsoft's steady investment in AI security filings suggests the company is thinking seriously about the gap between "encrypted at rest" and truly private AI computation. For you as an end user, the practical benefit would be that AI tools handling your sensitive data are harder to surveil even by sophisticated actors who share the same hardware infrastructure.

That makes this Microsoft's 401st filing in our Microsoft coverage since May, adding to security work like threat ranking by machine importance and locking settings across chips.

Editorial take

Getting this from a patent to a real product is unusually straightforward because the whole invention is software. No new chips, no specialized hardware, just a layer that shuffles how a model processes information so outside observers cannot figure out what it is doing by watching timing or memory behavior.

The honest gating question is speed. Scrambling the order of operations takes time, and the document acknowledges this directly by describing a dedicated component to manage that tradeoff, without actually resolving it.

The filing covers both training and live use, which suggests a natural ship order. Training runs already take days, so absorbing some extra complexity there is far easier than adding noticeable delays to something people are actively waiting on. The shortest route to a product almost certainly starts with back-end training environments, with real-time protection following once the speed cost is understood.

There are more where this came from

We read every patent application Big Tech publishes and send you the ones worth knowing. Plain English, free, every week.

The drawings

4 drawing sheets from US 2026/0267943 A1 · click any drawing to enlarge

Patent filing page

Source. Full patent text and figures from the official USPTO publication PDF.