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

# 安全与架构

> 了解 Blockradar 如何实现创新、企业级、无单点故障的安全性。

```mermaid theme={null}
flowchart LR
    %% Main Transaction Flow
    A@{ shape: stadium, label: "交易请求" } -->
    B@{ shape: rounded, label: "验证请求" } -->
    C@{ shape: rounded, label: "检索加密种子" } -->
    D@{ shape: rounded, label: "AES-256-GCM 解密" } -->
    E@{ shape: rounded, label: "派生私钥" } -->
    F@{ shape: rounded, label: "签名交易" } -->
    G@{ shape: rounded, label: "安全内存清除" } -->
    H@{ shape: stadium, label: "返回已签名交易" }

    %% Security Layer
    subgraph SecurityLayer ["安全层"]
        direction TB
        I@{ shape: cyl, label: "加密存储" }
        J@{ shape: rect, label: "认证标签" }
        K@{ shape: rect, label: "随机 IV 和盐" }
    end

    %% Real-Time Computation Layer
    subgraph RealTime ["实时计算"]
        direction TB
        L@{ shape: rect, label: "BIP44 派生" }
        M@{ shape: rect, label: "椭圆曲线数学" }
        N@{ shape: rect, label: "交易签名" }
    end

    %% Memory Protection Layer
    subgraph MemProtect ["内存保护"]
        direction TB
        O@{ shape: rect, label: "安全分配" }
        P@{ shape: rect, label: "加密清除" }
        Q@{ shape: rect, label: "零持久化" }
    end

    %% Contextual Connections
    C -. "种子源" .-> I
    D -. "标签验证" .-> J
    D -. "Nonce/盐" .-> K
    E -.-> L
    E -.-> M
    F -.-> N
    G -.-> O
    G -.-> P
    G -.-> Q

    %% Styling
    classDef mainStep fill:#353553,stroke:#6088FF,stroke-width:2px,color:#fff;
    classDef secLayer fill:#402345,stroke:#D885FF,stroke-width:2px,color:#fff;
    classDef compLayer fill:#18333B,stroke:#36BEBC,stroke-width:2px,color:#fff;
    classDef memLayer fill:#2B3A36,stroke:#88ED79,stroke-width:2px,color:#fff;
    class A,B,C,D,E,F,G,H mainStep;
    class I,J,K secLayer;
    class L,M,N compLayer;
    class O,P,Q memLayer;
```

Blockradar 代表了区块链密钥管理的范式转变，实现了可验证的非托管架构，确保私钥永远不会在我们的基础设施、您的应用程序或我们的团队中暴露或存储。我们的安全模型建立在密码学保证、高级加密算法和端到端可验证性之上。我们系统的每个组件都设计为可审计、可复现，并且其安全属性在数学上可证明。

与传统的托管解决方案不同，Blockradar 的架构使我们在密码学上不可能访问用户资金，即使发生完整的系统入侵。通过我们定制的高级 AES-256-GCM 加密、双种子短语系统（主网/测试网）和实时密钥计算，我们在保持用户对其加密资产完全主权的同时，提供企业级安全性。

<CardGroup cols={2}>
  <Card title="我们的方法" href="/zh/security/our-approach" icon="shield">
    了解 Blockradar 采取的方法来确保您资金的高安全性。
  </Card>

  <Card title="密钥管理" href="/zh/security/key-management" icon="key">
    了解 Blockradar 如何管理密钥并确保您资金的安全。
  </Card>

  <Card title="灾难恢复" href="/zh/security/disaster-recovery" icon="arrows-rotate">
    了解 Blockradar 如何在灾难发生时确保您资金的安全。
  </Card>

  <Card title="共同责任模型" href="/zh/security/shared-responsibility" icon="users">
    了解 Blockradar 如何与您共同承担资金安全责任。
  </Card>

  <Card title="报告漏洞" href="/zh/security/report-vulnerability" icon="triangle-exclamation">
    了解如何向 Blockradar 报告漏洞。
  </Card>
</CardGroup>
