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.

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')שופיא).