Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions app/cipher-identifier/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
import type { Metadata } from "next";
import CipherIdentifier from "../../components/cryptanalysis/CipherIdentifier";
import Navbar from "../../components/layout/Navbar";
import Footer from "../../components/layout/footer";

export const metadata: Metadata = {
title: "Cipher Identifier — Automated Cryptanalysis | CryptoViz",
description:
"Identify unknown ciphertext using automated statistical analysis. Uses frequency analysis, index of coincidence, entropy, Kasiski examination, and pattern matching to classify encryption methods.",
};

export default function CipherIdentifierPage() {
return (
<div className="flex min-h-screen flex-col bg-slate-950">
<Navbar />
<main className="flex-1">
<CipherIdentifier />
</main>
<Footer />
</div>
);
}
Loading