Warren 66f38698f5
Some checks failed
Test / test (push) Has been cancelled
Test / build (push) Has been cancelled
fix(ssh): correct signature to sign Exchange Hash instead of shared_secret
SSH签名修复完成(RFC 4253 Section 7.2):

问题:
- 之前直接签名shared_secret(错误)
- SSH协议要求签名Exchange Hash H

修复内容:
1. kex_exchange.rs:添加compute_exchange_hash函数
   - 计算H = SHA256(V_C || V_S || I_C || I_S || K_S || K_C || K_S || K)
   - 签名H而不是shared_secret

2. kex_exchange.rs:修改handle_kexdh_init函数
   - 添加client_version, server_version, kexinit_payloads参数
   - 传递所有Exchange Hash所需参数

3. server.rs:修改调用点
   - 传递KexState中的版本和KEXINIT payloads

测试结果:
-  SSH版本交换成功(SSH-2.0-MarkBaseSSH_1.0)
-  SSH_MSG_KEXINIT交换成功(curve25519-sha256)
-  签名验证通过(无incorrect signature错误)
-  SSH_MSG_NEWKEYS交换成功(加密通道建立)
-  加密packet MAC验证失败(cipher.rs AES-CTR待实现)

技术亮点:
-  符合RFC 4253标准
-  参考OpenSSH kex.c实现
-  完整Exchange Hash计算(SSH string + mpint格式)

下一步:
- 实现cipher.rs的AES-256-CTR加密功能
- 完成加密packet的MAC计算
- 测试完整SSH连接流程
2026-06-13 18:25:50 +08:00
2026-06-12 12:59:54 +08:00
2026-06-10 22:47:34 +08:00
2026-05-16 15:37:37 +08:00
2026-05-16 15:37:37 +08:00
2026-05-16 15:37:37 +08:00
2026-05-16 15:37:37 +08:00
2026-05-16 15:37:37 +08:00
2026-05-16 15:37:37 +08:00

MarkBase

Momentry Display Engine - Markdown渲染與檔案樹管理系統

功能特色

  • Markdown渲染支援表格、footnote、tasklist -檔案樹管理SQLite持久化
  • REST API18+路由)
  • macOS音訊控制音訊裝置切換、音量控制 -多種顯示模式tree, list, grid_sm, grid_lg

##安裝

###必要條件

  • Rust 1.92+
  • macOS音訊功能需 macOS
  • SwitchAudioSource音訊裝置切換
#安裝 Rust
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh

#安裝 SwitchAudioSourcemacOS
brew install switchaudio-source

###建構

cargo build

##使用

###啟動伺服器

cargo run -- display                #預設 port 11438
cargo run -- display -p8080         #自訂 port
cargo run -- display README.md      #顯示指定檔案

###渲染 Markdown

cargo run -- render README.md       #輸出到 stdout
cargo run -- render README.md -o output.html

##測試

cargo test                          #執行所有測試
cargo test test_insert              #執行特定測試

File Tree功能

REST API

路由 方法 功能
/api/v2/tree/:user_id GET 取得檔案樹
/api/v2/tree/:user_id/node POST 建立節點
/api/v2/tree/:user_id/node/:node_id PUT/DELETE 更新/刪除節點
/api/v2/tree/:user_id/node/:node_id/move PUT 移動節點
/api/v2/tree/:user_id/node/:node_id/alias PATCH 更新別名

###顯示模式

  • tree - 樹狀顯示
  • list - 列表顯示
  • grid_sm - 小格狀顯示
  • grid_lg - 大格狀顯示

###範例

curl http://localhost:11438/api/v2/tree/demo?mode=tree
curl http://localhost:11438/api/v2/tree/demo?mode=list

Demo資料

  • data/users/demo.sqlite - 50節點範例資料
  • data/cache/ -範例檔案

##開發

AGENTS.md詳細開發指南。

CI/CD

使用 Gitea Actionshttps://gitea.momentry.ddns.net

License

MIT

Description
No description provided
Readme 179 MiB
Languages
C 43.6%
Rust 20.1%
D 15.6%
Assembly 8.9%
Swift 3.3%
Other 8.3%