docs(cryptography): 添加置换密码文档并更新导航配置

添加关于古典加密算法中置换密码的详细文档,包括栅栏密码和列移位置换的工作原理、数学表示及安全性分析。同时更新笔记导航配置以包含新文档链接。

新增信创竞赛环境搭建指南文档,包含系统配置要求和详细操作步骤。
This commit is contained in:
祀梦
2025-10-29 22:12:12 +08:00
parent 868cc9b514
commit 8c7e8ea6e3
3 changed files with 184 additions and 1 deletions

View File

@@ -104,7 +104,8 @@ const cryptography = defineNoteConfig({
{ text: "密码学基础", link: "/theory/cryptography/" },
{
text: "古典加密算法", prefix: "/theory", items: [
{ text: "替换密码", link: "/theory/cryptography/substitution-ciphers/" }
{ text: "替换密码", link: "/theory/cryptography/substitution-ciphers/" },
{ text: "置换密码", link: "/theory/cryptography/permutation-encryption/" },
]
},
]