> ## Documentation Index
> Fetch the complete documentation index at: https://docs.turnkey.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Security & architecture

> Learn how Turnkey achieves innovative, cloud scale, no single point of failure security.

export const FeatureCard = ({title, description, icon, logo, href}) => {
  return <a href={href} className="not-prose font-normal group ring-0 ring-transparent cursor-pointer block rounded-lg border border-zinc-950/10 dark:border-white/10 bg-white dark:bg-transparent p-5 no-underline hover:border-primary/40 transition-colors">
      <div className="tk-card-row">
        <span className="tk-card-icon-wrap">
          {logo ? <img src={`/images/networks/${logo}.svg`} className="tk-card-network-logo" alt="" /> : <span className="tk-card-icon" style={{
    maskImage: `url(/images/icons/${icon}.svg)`,
    WebkitMaskImage: `url(/images/icons/${icon}.svg)`
  }} />}
        </span>
        <div>
          <div className="font-semibold text-sm text-zinc-950 dark:text-white group-hover:text-primary transition-colors">
            {title}
          </div>
          {description && <div className="text-sm text-zinc-500 dark:text-zinc-400 mt-1">
              {description}
            </div>}
        </div>
      </div>
    </a>;
};

Turnkey is the first verifiable key management system of its kind, securing millions of wallets and private keys for a wide variety of use cases.
Turnkey's security architecture ensures that raw private keys are never exposed to Turnkey, your software, or your team.
We provide end-to-end private key generation and access control within secure enclaves, with strong isolation guarantees and
cryptographic attestation proving that only authorized code is running. Our custom-built operating system, QuorumOS,
minimizes attack surface and enables reproducible, auditable deployments. From hardware-backed trust to multi-factor access controls,
every layer of Turnkey's architecture is designed to be secure, verifiable, and developer-friendly by default. Our whitepaper covers our
holistic security model in-depth, and speaks to our vision for building verifiable key management infrastructure. Learn more about our approach to security here.

<div style={{display: 'grid', gridTemplateColumns: 'repeat(2, 1fr)', gap: '12px'}}>
  <FeatureCard title="Our approach" icon="file-shield-02" href="/security/our-approach" description="Learn about Turnkey's unique security framework." />

  <FeatureCard title="Non-custodial key management" icon="lock-01" href="/security/non-custodial-key-mgmt" description="Learn how Turnkey handles private keys." />

  <FeatureCard title="Secure enclaves" icon="cpu-chip-01" href="/security/secure-enclaves" description="Overview of secure enclaves and how we use them." />

  <FeatureCard title="Quorum deployments" icon="server-04" href="/security/quorum-deployments" description="Learn how we deploy our secure applications." />

  <FeatureCard title="Verifiable data" icon="check-circle" href="/security/verifiable-data" description="Learn how we ensure an end-to-end audit trail." />

  <FeatureCard title="Disaster recovery" icon="refresh-cw-01" href="/security/disaster-recovery" description="Turnkey's disaster recovery process." />

  <FeatureCard title="Enclave secure channels" icon="route" href="/security/enclave-secure-channels" description="Learn about Turnkey's enclave to end-user secure channels." />

  <FeatureCard title="The Turnkey Whitepaper" icon="book-open-01" href="/security/whitepaper" description="Read about Turnkey's ambitious foundations with the Turnkey Whitepaper." />

  <FeatureCard title="Reporting a vulnerability" icon="file-code-02" href="/security/reporting-a-vulnerability" description="Overview of Turnkey's responsible disclosure program." />

  <FeatureCard title="Shared responsibility model" icon="intersect-circle" href="/security/shared-responsibility-model" description="Which security responsibilities are Turnkey's and which are yours as an integrator." />

  <FeatureCard title="Remote attestation" icon="check-circle" href="/security/remote-attestation" description="How Turnkey enclaves cryptographically prove their identity and integrity to a remote verifier." />

  <FeatureCard title="Turnkey Verified" icon="file-shield-02" href="/security/turnkey-verified" description="Cryptographic verification that only authorized code is running in Turnkey's secure enclaves." />
</div>
