바이피드 Cipher

Free online Bifid Cipher encrypt/decrypt tool. Based on Polybius square plus row/column splitting, classical fractionation cipher, pure JS.

사용법

기능

  • Bifid 密码:1901 年 Felix Delastelle 提出的分馏密码,结合 Polybius 方阵
  • 加密:把每个字母转为 (行,列) 坐标,然后所有行的数字连写,所有列的数字连写,再按顺序配对查表
  • 解密:逆向操作,先取 2n 个数字,前 n 个是行,后 n 个是列,配对查表
  • 非 A-Z 字符保留,J 合并到 I

활용 사례

  • 经典示例:密钥 BGWKZ...,明文 HELLO → ?(取决于矩阵)
  • CTF 常见古典密码,适合密码学教学

나이nt API 사용법

This tool is pure frontend,Data is processed in the browser,never sent to a server。 manifest 中 api_url 为空,/api/bifid/ 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/bifid/schema.json

// Step 2: 在浏览器中执行工具逻辑
// Bifid 密码 在工具页 JS 中实现