{"id":19870778,"url":"https://github.com/mainakrepositor/super-ciphers","last_synced_at":"2025-10-26T07:36:06.658Z","repository":{"id":106238580,"uuid":"439243594","full_name":"MainakRepositor/Super-Ciphers","owner":"MainakRepositor","description":"A collection of some of the amazing cryptographic Ciphers in C++, Python and Java with a detailed documentation and approach map. (Particularly helpful for Blockchain. and designing Encryption Algorithms)","archived":false,"fork":false,"pushed_at":"2021-12-19T04:45:07.000Z","size":49,"stargazers_count":21,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-05-02T08:46:42.229Z","etag":null,"topics":["arithmetic","blockchain","cipher-algorithms","cpp","cryptography","java","logic","python3"],"latest_commit_sha":null,"homepage":"","language":"Java","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/MainakRepositor.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}},"created_at":"2021-12-17T07:13:06.000Z","updated_at":"2025-02-03T07:05:58.000Z","dependencies_parsed_at":"2023-05-30T21:30:34.051Z","dependency_job_id":null,"html_url":"https://github.com/MainakRepositor/Super-Ciphers","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/MainakRepositor/Super-Ciphers","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MainakRepositor%2FSuper-Ciphers","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MainakRepositor%2FSuper-Ciphers/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MainakRepositor%2FSuper-Ciphers/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MainakRepositor%2FSuper-Ciphers/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/MainakRepositor","download_url":"https://codeload.github.com/MainakRepositor/Super-Ciphers/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MainakRepositor%2FSuper-Ciphers/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":281074239,"owners_count":26439421,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-26T02:00:06.575Z","response_time":61,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["arithmetic","blockchain","cipher-algorithms","cpp","cryptography","java","logic","python3"],"created_at":"2024-11-12T16:10:03.883Z","updated_at":"2025-10-26T07:36:06.653Z","avatar_url":"https://github.com/MainakRepositor.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Ciphers\nA collection of some of the amazing cryptographic ciphers in C++, Python and Java with a detailed documentation and approach map. (Particularly helpful for Blockchain. and designing Encryption Algorithms)\n\n| Sl. No. | Cipher Name | Python | Java | CPP | About | \n|---------|-------------|--------|------|-----|-------|\n| 1 | AtBash | [Code](https://github.com/MainakRepositor/Ciphers/blob/master/Atbash.py) | [Code](https://github.com/MainakRepositor/Ciphers/blob/master/Atbash%20Cipher.java) | [Code](https://github.com/MainakRepositor/Ciphers/blob/master/AtBash.cpp) | [Read]() |\n| 2 | Ceasar | [Code](https://github.com/MainakRepositor/Ciphers/blob/master/Ceasar.py) | [Code](https://github.com/MainakRepositor/Ciphers/blob/master/Ceasar%20Cipher.java) | [Code](https://github.com/MainakRepositor/Ciphers/blob/master/Ceasar.cpp) | [Read]() |\n| 3 | Column Transposition | [Code](https://github.com/MainakRepositor/Ciphers/blob/master/ColTrans.py) | [Code](https://github.com/MainakRepositor/Ciphers/blob/master/ColTrans%20Cipher.java) | [Code](https://github.com/MainakRepositor/Ciphers/blob/master/ColumnTransform.cpp) | [Read]() |\n| 4 | Hill | [Code](https://github.com/MainakRepositor/Ciphers/blob/master/Hill.py) | [Code](https://github.com/MainakRepositor/Ciphers/blob/master/Hill%20Cipher.java) | [Code](https://github.com/MainakRepositor/Ciphers/blob/master/Hill.cpp) | [Read]() |\n| 5 | Keyword | [Code](https://github.com/MainakRepositor/Ciphers/blob/master/Keyword.py) | [Code](https://github.com/MainakRepositor/Ciphers/blob/master/Keyword%20Cipher.java) | [Code](https://github.com/MainakRepositor/Ciphers/blob/master/Keyword.cpp) | [Read]() |\n| 6 | ROT13 | [Code](https://github.com/MainakRepositor/Ciphers/blob/master/ROT13.py) | [Code](https://github.com/MainakRepositor/Ciphers/blob/master/ROT13%20Cipher.java) | [Code]() | [Read](https://github.com/MainakRepositor/Ciphers/blob/master/ROT13.cpp) |\n| 7 | ROT18 | [Code](https://github.com/MainakRepositor/Ciphers/blob/master/ROT18.py) | [Code](https://github.com/MainakRepositor/Ciphers/blob/master/ROT%2018%20Cipher.java) | [Code](https://github.com/MainakRepositor/Ciphers/blob/master/ROT18.cpp) | [Read]() |\n| 8 | ROT47 | [Code](https://github.com/MainakRepositor/Ciphers/blob/master/ROT47.py) | [Code](https://github.com/MainakRepositor/Ciphers/blob/master/ROT%2047%20Cipher.java) | [Code](https://github.com/MainakRepositor/Ciphers/blob/master/ROT47.cpp) | [Read]() |\n| 9 | ROT5 | [Code](https://github.com/MainakRepositor/Ciphers/blob/master/ROT5.py) | [Code](https://github.com/MainakRepositor/Ciphers/blob/master/ROT%205%20Cipher.java) | [Code]() | [Read](https://github.com/MainakRepositor/Ciphers/blob/master/ROT5.cpp) |\n| 10 | Vigenere | [Code](https://github.com/MainakRepositor/Ciphers/blob/master/Vigenere.py) | [Code](https://github.com/MainakRepositor/Ciphers/blob/master/Vigenere%20Cipher.java) | [Code](https://github.com/MainakRepositor/Ciphers/blob/master/VigenereCipher.cpp) | [Read]() |\n| 11 | XOR | [Code](https://github.com/MainakRepositor/Ciphers/blob/master/XOR.py) | [Code](https://github.com/MainakRepositor/Ciphers/blob/master/XOR%20Cipher.java) | [Code](https://github.com/MainakRepositor/Ciphers/blob/master/XOR.cpp) | [Read]() |\n\n-----------------------------------------------------------\n\n### Feel free to Star this repo if you find it useful. 😊\n\n### Project Logs:\n| Name of Creator | Start Date | End Date | Duration | Project Type | Deploy |\n|-----------------|------------|----------|----------|--------------|--------|\n| Mainak Chaudhuri | 15-12-2021 | 16-12-2021 | 1 day | Codes | NULL |\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmainakrepositor%2Fsuper-ciphers","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmainakrepositor%2Fsuper-ciphers","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmainakrepositor%2Fsuper-ciphers/lists"}