import { polysubstitutionLinks } from "@/util/LinksUtil"; import { createFileRoute, Link } from "@tanstack/react-router"; export const Route = createFileRoute("/polysubstitution/")({ component: PolyPage }); // eslint-disable-next-line react-refresh/only-export-components function PolyPage(){ return (

Poly-Substitution Ciphers

Poly-Substitution ciphers encrypt text multiple characters at a time. These are more secure than mono-substitution ciphers because attempts to crack the ciphers through brute force must guess two characters at a time instead of one.

); }