{"id":23235759,"url":"https://github.com/hack-light/caesar-cipher-application","last_synced_at":"2026-01-18T19:01:58.447Z","repository":{"id":244263027,"uuid":"814735536","full_name":"Hack-Light/Caesar-Cipher-Application","owner":"Hack-Light","description":null,"archived":false,"fork":false,"pushed_at":"2024-06-13T15:52:48.000Z","size":9,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-05T20:35:42.829Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"HTML","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/Hack-Light.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}},"created_at":"2024-06-13T15:41:04.000Z","updated_at":"2024-06-13T15:52:51.000Z","dependencies_parsed_at":"2024-06-13T18:36:50.200Z","dependency_job_id":"aaf49e8f-3af6-4c72-953f-f6640e82ebbc","html_url":"https://github.com/Hack-Light/Caesar-Cipher-Application","commit_stats":null,"previous_names":["hack-light/caesar-cipher-application"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Hack-Light/Caesar-Cipher-Application","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Hack-Light%2FCaesar-Cipher-Application","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Hack-Light%2FCaesar-Cipher-Application/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Hack-Light%2FCaesar-Cipher-Application/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Hack-Light%2FCaesar-Cipher-Application/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Hack-Light","download_url":"https://codeload.github.com/Hack-Light/Caesar-Cipher-Application/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Hack-Light%2FCaesar-Cipher-Application/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28548946,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-18T14:59:57.589Z","status":"ssl_error","status_checked_at":"2026-01-18T14:59:46.540Z","response_time":98,"last_error":"SSL_read: 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":[],"created_at":"2024-12-19T03:29:29.030Z","updated_at":"2026-01-18T19:01:58.429Z","avatar_url":"https://github.com/Hack-Light.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Caesar Cipher Text Encryption/Decryption Application\n\nThis application allows users to encrypt plaintext using a Caesar Cipher and decrypt ciphertext back to plaintext, given the correct key. It is built using HTML, CSS, and JavaScript and provides a simple, interactive interface for users to perform encryption and decryption.\n\n## Features\n\n- Encrypt plaintext using a key to generate ciphertext.\n- Decrypt ciphertext using the correct key to reveal the original plaintext.\n- Copy the encrypted or decrypted text to the clipboard.\n- Responsive design for use on different devices.\n\n## Getting Started\n\n### Prerequisites\n\n- A modern web browser (Chrome, Firefox, Safari, Edge, etc.)\n\n### Installation\n\n1. Clone the repository to your local machine:\n   ```bash\n   git clone https://github.com/Hack-Light/Caesar-Cipher-Application.git\n   ```\n2. Navigate to the project directory:\n   ```bash\n   cd caesar-cipher-app\n   ```\n3. Open `index.html` in your web browser to view and use the application.\n\n### Hosting\n\nThe application can be hosted using GitHub Pages, Vercel, or any other static site hosting service.\n\n## Usage\n\n1. **Encryption**\n\n   - Open the application in your web browser.\n   - Ensure the \"Encrypt\" section is active.\n   - Enter the plaintext you wish to encrypt in the \"Text to Encrypt\" input field.\n   - Enter the shift key (a number) in the \"Shift By\" input field.\n   - Click the \"Submit\" button.\n   - The encrypted text will be displayed below.\n   - Click the \"Copy\" button to copy the encrypted text to your clipboard.\n\n2. **Decryption**\n   - Open the application in your web browser.\n   - Switch to the \"Decrypt\" section by clicking the toggle.\n   - Enter the ciphertext you wish to decrypt in the \"Text to Decrypt\" input field.\n   - Enter the shift key (a number) used during encryption in the \"Shift By\" input field.\n   - Click the \"Submit\" button.\n   - The decrypted text will be displayed below.\n   - Click the \"Copy\" button to copy the decrypted text to your clipboard.\n\n### Example\n\n- **Encrypting the text \"HELLO\" with a key of 3:**\n\n  - Text to Encrypt: `HELLO`\n  - Shift By: `3`\n  - Encrypted Text: `KHOOR`\n\n- **Decrypting the text \"KHOOR\" with a key of 3:**\n  - Text to Decrypt: `KHOOR`\n  - Shift By: `3`\n  - Decrypted Text: `HELLO`\n\n## Project Structure\n\n```\ncaesar-cipher-app/\n│\n├── index.html         # The main HTML file\n├── style.css          # CSS file for styling\n└── README.md          # This README file\n```\n\n## Development\n\nIf you wish to contribute to the project or modify it for your needs, you can follow the standard Git workflow:\n\n1. Fork the repository.\n2. Clone your fork:\n   ```bash\n   git clone https://github.com/Hack-Light/Caesar-Cipher-Application.git\n   ```\n3. Create a new branch for your feature or bugfix:\n   ```bash\n   git checkout -b feature-name\n   ```\n4. Make your changes and commit them:\n   ```bash\n   git add .\n   git commit -m \"Description of your changes\"\n   ```\n5. Push your changes to your fork:\n   ```bash\n   git push origin feature-name\n   ```\n6. Create a pull request from your branch to the main repository.\n\n## License\n\nThis project is licensed under the MIT License. See the [LICENSE](LICENSE) file for details.\n\n## Acknowledgments\n\n- UI: [UI Design](https://codepen.io/ig_design/pen/KKVQpVP)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhack-light%2Fcaesar-cipher-application","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhack-light%2Fcaesar-cipher-application","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhack-light%2Fcaesar-cipher-application/lists"}