Codes — ELS · Temurah · Ziruph
Three kabbalistic ciphers, ported to JavaScript from their original Python and bundled for in-browser use. ELS lays the Torah as a search matrix (source:
pedroelbanquero/torahcodespython); Temurah and Ziruph are substitution ciphers (source: cryptocalypse/sophia_ai_robot_prophet). Nothing leaves your browser.ELS grid
Temurah / Atbash
Ziruph
Temurah / Atbash — the mirror cipher
A JS port of
sophia_ai_robot_prophet lib/temuraeh.py (temurah(reverse=True)): each letter of the alphabet is paired with its mirror (א↔ת, ב↔ש …). The classic Templar example is reproduced exactly: BAPHOMET = בפומת → שופיא = SOPHIA.Input
בפומת
Temurah / Atbash
שופיא
Substitution table — Hebrew
א↔ת
ב↔ש
ג↔ר
ד↔ק
ה↔צ
ו↔פ
ז↔ע
ח↔ס
ט↔נ
י↔מ
כ↔ל
Final forms (ך ם ן ף ץ) are normalized to their base letter before the mirror, so the cipher is a proper atbash. The cited בפומת contains no finals, so the output שופיא is byte-identical to the upstream Python (
temura_conv('בפומת','Hebrew') → שופיא).