레일 펜스
Free online Rail Fence encrypt/decrypt tool. Zigzag write across multiple rows, classical transposition cipher, pure JS implementation.
사용법
기능
- Rail Fence 密码:把明文按 Z 字形写入多条栅栏,再按行读出
- 支持 2-20 任意栅栏数
- 加密:把字符按 0→1→2→...→n→n-1→...→0 路径分配到各栅栏,按行读出
- 解密:按栅栏长度还原每行字符,按原路径回填
활용 사례
- 经典示例:WEAREDISCOVEREDFLEEATONCE + 3 栅栏 → WECRLTEERDSOEEFEAOCAIVDEN
- 属于换位密码(字符本身不变,只是位置重排)
나이nt API 사용법
This tool is pure frontend,Data is processed in the browser,never sent to a server。
manifest 中 api_url 为空,
/api/rail_fence/ endpoint does not exist(返回 404)。
Agent 请读取 schema.json 理解字段,Please execute the tool logic in the browser first。
// Step 1: 读取工具 Schema GET https://clawam.com/tools/rail_fence/schema.json // Step 2: 在浏览器中执行工具逻辑 // Rail Fence 密码 在工具页 JS 中实现