When agents roam, perimeters evaporate.
For the past three decades, enterprise security architecture has been built around one central principle: limit access. This perimeter-based approach aimed to reduce the number of entities that can touch sensitive information and constrain the blast radius when something goes wrong. As a consequence, Zero Trust, segmentation, role-based access, data minimization, and network controls all exist because of that principle.
Agentic AI creates a fundamental contradiction: the more context an agent can access, the more useful it becomes. A procurement agent becomes more valuable when it can see supplier contracts, purchasing history, pricing benchmarks, financial constraints, and external market data. Similarly, a customer service agent becomes more effective when it can correlate support tickets, CRM records, billing information, product documentation, and policy exceptions.
The pattern is the same across functions: agent utility increases as context expands.
That means enterprises are giving AI agents broader access to sensitive data while trying to implement security models originally designed to restrict that access. That tension is not theoretical anymore. AI is already mainstream in the enterprise, and agentic systems are moving from experimentation to scale. So, while the infrastructure is being built and the agents being deployed, the question becomes whether the security architecture is keeping up.
It is not.
In a traditional LLM deployment, the main exposure point is the prompt-to-model interface. In an agentic architecture, that single point multiplies. Agents call LLMs repeatedly during planning, reasoning, tool execution, evaluation, and response generation. They retrieve knowledge from RAG pipelines where document chunks, metadata, and embeddings may expose sensitive information. They keep persistent memory—conversation history, checkpoints, episodic facts, tool outputs, decision context—in databases that become high-value targets. And increasingly they communicate with other agents using protocols such as A2A, moving business data through HTTP-based payloads across gateways, proxies, platforms, and runtimes.
This is the new problem: sensitive data no longer sits behind one application boundary, it moves through an agentic fabric.
The enterprise has tried to respond with stronger perimeters: private networking, Zero Trust, access controls, TEEs, hardware enclaves, and confidential-computing environments. These controls are very important, but they solve only part of the problem. A TEE protects computation inside a defined execution boundary, but agentic workflows extend well beyond any single boundary (e.g. the embedding in a vector database, the checkpoint written to persistent memory, the A2A payload routed through another system all sit outside the enclave).
Then the real design question shifts: not “Is the perimeter secure?” but “Who can see the data at each point where the agent uses it, and what technical control prevents exposure there?”
Agentic AI requires data-level protection across the full workflow. Orchestration frameworks continue to operate on routing metadata—tool names, state signals, task identifiers—while sensitive payloads require encryption at each exposure point. In practice, this means protecting four distinct exposure surfaces that agentic architectures create, each with its own risk profile and each requiring a specific encryption approach.
The inference boundary.
Every agent-to-LLM call may carry enterprise data: prompts, retrieved context, tool results, reasoning traces, and generated responses. If the model is externally hosted, that data crosses into a provider-controlled environment. If the model is self-hosted, privileged infrastructure operators may still become part of the trust model.
The solution is encrypted inference—replacing the standard inference endpoint with an encrypted equivalent that maintains the same API and model architecture. Encryption becomes a property of the infrastructure, not a change to the application.
The knowledge layer.
RAG is a common way for agents to access enterprise knowledge, but document chunks, metadata, and embeddings must be treated as sensitive assets. Embeddings are not harmless artifacts—research has shown they can leak or reconstruct sensitive text with high fidelity. Morris et al. demonstrated that 92% of 32-token text inputs can be recovered exactly from their embeddings.
Protection requires encrypted embeddings and encrypted similarity search—keeping the retrieval pipeline opaque while maintaining semantic search functionality.
Persistent memory.
Agent memory is not just chat history, it can contain the full operational record of what the agent saw, inferred, decided, and did. Orchestration framework checkpoints, session state, episodic facts, and tool outputs can become a concentrated store of enterprise intelligence. Persistent memory requires encryption at rest. Unlike application-level encryption, this must protect the full operational record—data that perimeter controls and runtime isolation don’t address.
Agent-to-agent communication.
A2A standardizes how agents exchange tasks, messages, artifacts, and state over HTTP-based protocols. TLS protects transport, but when TLS terminates at an API gateway, load balancer, or proxy, payloads can become visible to authorized intermediaries.
End-to-end encryption for A2A payloads allows routing metadata to remain visible for interoperability, while business data stays opaque to intermediaries.
This is the core point: agentic AI needs continuous protection across inference, retrieval, memory, tools, and inter-agent communication. A critical distinction: this protection is strongest where the enterprise controls the agent pipeline.
For enterprise-developed agents built with frameworks like LangGraph or LangChain and deployed on enterprise AI platforms, you can embed encryption across the entire architecture.
For native platform agents embedded inside SaaS products, protection depends on what the platform vendor exposes or allows.
This distinction separates genuine security architecture from vendor promises.
The shift to agentic AI is already underway. Agents are being built, deployed, connected, and given access to operational data. So, the security question is no longer whether the perimeter will hold, rather, how to protect a system that was built to roam.
In agentic AI, that is the only question that matters.


