1. Inspect the pattern
We look for tell-tale structure: Base64 padding, hex pairs, binary bytes, Morse symbols and number sequences.
Paste an unknown message to identify likely encodings and ciphers, then explore the strongest decoding candidates.
Try common encodings and classical transformations in one place. Your text stays in this browser; results are candidates, not a promise that every message has one correct answer.
We look for format signatures, run safe transformations, and rank readable output. Press Ctrl or Cmd + Enter to run analysis.
Paste text above to start. Try the examples if you do not have a message yet.
Supported in this first release: Base64, hexadecimal, binary, URL encoding, ROT13, Caesar shifts, Atbash, reverse text, A1Z26 and Morse code.
We look for tell-tale structure: Base64 padding, hex pairs, binary bytes, Morse symbols and number sequences.
Safe transformations such as ROT13, Caesar shifts and Atbash are compared by readable-text signals.
Move from a likely match to a focused Base64 decoder, Morse tool, or Caesar workspace.
使用罗马皇帝信赖的传奇加密方法转换您的信息。
凯撒密码在公元前58年由尤利乌斯·凯撒在其军事行动中使用,彻底改变了古代密码学。这种替换方法通过将每个字母向后移动三位来保护关键军事通信,为现代加密技术奠定了基础。
我们的工具实现了经典的位移算法,每个字母在字母表中移动固定的位数。当位移到达'Z'时,它会绕回'A',形成一个循环替换模式,在保密的同时保持消息结构。
The Caesar cipher utilizes modular arithmetic for precise letter transformation:
Encryption: En(x) = (x + n) mod 26
Decryption: Dn(x) = (x - n) mod 26
Where x = letter position (A=0...Z=25), n = shift value
尽管通过暴力破解(仅25个可能的密钥)或频率分析很容易被破解,但凯撒密码在密码学教育和简单混淆方面仍然很有价值。ROT13等现代应用用于隐藏剧透和教授基本的加密概念。
凯撒密码的当代用途包括教育演示、谜题创作和软件开发培训。ROT13等变体常用于在线论坛、编程挑战,并作为更复杂密码系统的构建模块。
凯撒密码是介绍密码学原理的完美入门,展示了替换、对称加密和密码分析等关键概念。学生通过实践学习模式识别、数学思维和安全意识等基本技能。
凯撒密码是一种简单的替换加密技术,其中明文中的每个字母都在字母表中移动固定的位数。例如,位移为3时,'A'变成'D'。字母表是循环的,所以'X'位移3位后会变成'A'。
对于保护敏感信息而言,凯撒密码如今已不安全。由于只有25个可能的密钥,它很容易被暴力破解或频率分析攻破。然而,它在教育、简单文本混淆方面仍然很有价值。
加密是将明文通过向前位移转换为密文。解密则相反,通过向后位移相同的量来还原原始消息。两者都需要知道正确的位移值。
可以,主要通过两种方法:暴力破解(尝试所有25种可能的位移)和频率分析(将密文中字母的频率与语言的常规字母频率进行比较)。我们的工具提供了暴力破解选项来自动完成此操作。
ROT13是凯撒密码的一个特例,位移值为13。它的独特之处在于,应用两次ROT13会返回原始文本(因为13 + 13 = 26)。它常用于在线论坛隐藏剧透。
传统的凯撒密码只处理字母。我们的工具提供了一个选项,可以将数字(0-9)也包含在位移过程中,这是一种常见的扩展。