{"id":48934753,"url":"https://github.com/mox678/ciphers-visualizer","last_synced_at":"2026-04-17T11:04:11.492Z","repository":{"id":328414472,"uuid":"1109471443","full_name":"MoX678/ciphers-visualizer","owner":"MoX678","description":"Cipher Visualizer is an educational tool designed to help students, understand how various encryption algorithms work through ","archived":false,"fork":false,"pushed_at":"2025-12-18T23:13:42.000Z","size":1430,"stargazers_count":5,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-12-21T22:48:00.081Z","etag":null,"topics":["cipher-algorithms","encryption"],"latest_commit_sha":null,"homepage":"https://ciphers-visualizer.vercel.app/","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/MoX678.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-12-03T21:14:12.000Z","updated_at":"2025-12-21T08:33:14.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/MoX678/ciphers-visualizer","commit_stats":null,"previous_names":["mox678/ciphers-deepdive"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/MoX678/ciphers-visualizer","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MoX678%2Fciphers-visualizer","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MoX678%2Fciphers-visualizer/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MoX678%2Fciphers-visualizer/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MoX678%2Fciphers-visualizer/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/MoX678","download_url":"https://codeload.github.com/MoX678/ciphers-visualizer/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MoX678%2Fciphers-visualizer/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31926262,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-17T10:35:34.458Z","status":"ssl_error","status_checked_at":"2026-04-17T10:35:09.472Z","response_time":62,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["cipher-algorithms","encryption"],"created_at":"2026-04-17T11:04:09.771Z","updated_at":"2026-04-17T11:04:11.484Z","avatar_url":"https://github.com/MoX678.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 🔐 Cipher Visualizer\n\nAn interactive web application for visualizing and learning classical and modern cryptographic ciphers. Built with React, TypeScript, and Tailwind CSS.\n\n![Cipher Visualizer](https://img.shields.io/badge/React-18-blue?logo=react) ![TypeScript](https://img.shields.io/badge/TypeScript-5-blue?logo=typescript) ![Tailwind CSS](https://img.shields.io/badge/Tailwind-3-blue?logo=tailwindcss)\n\n## 🎯 Overview\n\nCipher Visualizer is an educational tool designed to help students, understand how various encryption algorithms work through interactive visualizations. Each cipher includes step-by-step animations, detailed explanations, and hands-on encryption/decryption capabilities.\n\n## ✨ Features\n\n### 📚 Supported Ciphers\n\n#### Classical Ciphers\n\n- **Caesar Cipher** (~50 BC) - Simple letter shifting with animated cipher wheel\n- **Monoalphabetic Cipher** - Custom letter substitution mapping\n- **Vigenère Cipher** (1553) - Polyalphabetic cipher with Tabula Recta visualization\n- **Playfair Cipher** (1854) - Digraph substitution with 5×5 key matrix\n- **Rail Fence Cipher** - Transposition cipher with zigzag pattern visualization\n- **Columnar Transposition** - Column-based rearrangement cipher\n\n#### Modern Ciphers\n\n- **Hill Cipher** - Matrix multiplication-based encryption with step-by-step math visualization\n- **One-Time Pad** - Perfect secrecy with random key XOR operation\n- **DES** (Data Encryption Standard) - Feistel network structure with 16 rounds\n- **AES** (Advanced Encryption Standard) - Modern block cipher with SubBytes, ShiftRows, MixColumns, and AddRoundKey operations\n\n### 🎨 Interactive Visualizations\n\n- **Animated encryption/decryption** - Watch the cipher process step by step\n- **Step navigation** - Move forward/backward through the encryption process\n- **Real-time input/output** - See results as you type\n- **Mobile responsive** - Full functionality on all device sizes\n\n\n\n## 🚀 Getting Started\n\n### Prerequisites\n\n- Node.js 18+ and npm - [Install with nvm](https://github.com/nvm-sh/nvm#installing-and-updating)\n\n### Installation\n\n```bash\n# Clone the repository\ngit clone https://github.com/MoX678/ciphers-visualizer.git  \ncd cipher-visualizer\n\n# Install dependencies\nnpm install\n\n# Start development server\nnpm run dev\n```\n\nThe app will be available at `http://localhost:5173`\n\n### Build for Production\n\n```bash\nnpm run build\nnpm run preview\n```\n\n## 🏗️ Tech Stack\n\n| Technology | Purpose |\n|------------|---------|\n| **Vite** | Fast build tool and dev server |\n| **React 18** | UI component library |\n| **TypeScript** | Type-safe JavaScript |\n| **Tailwind CSS** | Utility-first styling |\n| **shadcn/ui** | Beautiful UI components |\n| **Framer Motion** | Smooth animations |\n\n## 📁 Project Structure\n\n```text\ncipher-visualizer/\n├── src/\n│   ├── components/       # Reusable UI components\n│   │   ├── ui/          # shadcn/ui components\n│   │   ├── ScrollCards.tsx\n│   │   └── ...\n│   ├── pages/           # Cipher implementation pages\n│   │   ├── CaesarCipher.tsx\n│   │   ├── VigenereCipher.tsx\n│   │   ├── HillCipher.tsx\n│   │   ├── AESCipher.tsx\n│   │   └── ...\n│   ├── hooks/           # Custom React hooks\n│   └── lib/             # Utility functions\n├── public/              # Static assets\n└── package.json\n```\n\n## 🎓 Educational Use\n\nCipher Visualizer is perfect for:\n\n- **Cryptography courses** - Demonstrate cipher mechanics visually\n- **Self-learning** - Understand encryption through interaction\n- **Teaching** - Show students how encryption works step by step\n\n## 🤝 Contributing\n\nContributions are welcome! Feel free to:\n\n1. Fork the repository\n2. Create a feature branch (`git checkout -b feature/new-cipher`)\n3. Commit your changes (`git commit -m 'Add new cipher'`)\n4. Push to the branch (`git push origin feature/new-cipher`)\n5. Open a Pull Request\n\n## 📄 License\n\nThis project is open source and available under the [MIT License](LICENSE).\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmox678%2Fciphers-visualizer","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmox678%2Fciphers-visualizer","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmox678%2Fciphers-visualizer/lists"}