{"id":19608836,"url":"https://github.com/joegithubpro/cryptography","last_synced_at":"2026-05-14T11:31:30.152Z","repository":{"id":238070946,"uuid":"782916965","full_name":"JoeGitHubPro/Cryptography","owner":"JoeGitHubPro","description":"Cryptography algorithms - Desktop application","archived":false,"fork":false,"pushed_at":"2024-05-14T18:42:06.000Z","size":177,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-01-09T09:52:22.717Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"C#","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/JoeGitHubPro.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-04-06T12:13:33.000Z","updated_at":"2024-05-23T06:34:41.000Z","dependencies_parsed_at":"2025-01-09T09:52:14.089Z","dependency_job_id":"3022bc2d-0009-40d4-8e00-01e66a04a0d3","html_url":"https://github.com/JoeGitHubPro/Cryptography","commit_stats":null,"previous_names":["joegithubpro/cryptography"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JoeGitHubPro%2FCryptography","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JoeGitHubPro%2FCryptography/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JoeGitHubPro%2FCryptography/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JoeGitHubPro%2FCryptography/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/JoeGitHubPro","download_url":"https://codeload.github.com/JoeGitHubPro/Cryptography/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":240898275,"owners_count":19875151,"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","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-11-11T10:17:43.734Z","updated_at":"2026-05-14T11:31:25.119Z","avatar_url":"https://github.com/JoeGitHubPro.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n\u003cp align=\"center\" style=\"width: 100%;\"\u003e\n    \u003cimg src=\"Cryptography/Cryptography.png\" alt=\"project-image\" style=\"width: 100%; max-width: 600px;\"\u003e\n\u003c/p\u003e\n\n\n\u003cbody\u003e\n  \u003ch1\u003eCryptography Algorithms Desktop Application\u003c/h1\u003e\n  \u003cp\u003eThis is educational project for Cryptography theory\u003c/p\u003e\n  \u003ch2\u003eFeatures\u003c/h2\u003e\n  \u003cul\u003e\n    \u003cli\u003e\u003cstrong\u003eAlgorithm Support:\u003c/strong\u003e The application supports multiple cryptography algorithms, including symmetric and asymmetric encryption algorithms, hash functions, and digital signatures.\u003c/li\u003e\n    \u003cli\u003e\u003cstrong\u003eUser-Friendly Interface:\u003c/strong\u003e The application provides an intuitive and user-friendly interface for easy interaction and operation.\u003c/li\u003e\n    \u003cli\u003e\u003cstrong\u003eEncryption and Decryption:\u003c/strong\u003e Users can encrypt their sensitive data using different algorithms and decrypt it back to its original form when needed.\u003c/li\u003e\n\n  \u003c/ul\u003e\n  \u003ch2\u003eImplemented Algorithms\u003c/h2\u003e\n  \u003cul\u003e\n    \u003cli\u003eCaesar : A substitution cipher where each letter in the plaintext is shifted a certain number of places down or up the alphabet.\u003c/li\u003e\n    \u003cli\u003eColumnar Transposition: A transposition cipher where the plaintext is rearranged according to a matrix of a fixed column width.\u003c/li\u003e\n    \u003cli\u003eHill: A polygraphic substitution cipher based on linear algebra, using matrices to encrypt and decrypt plaintext.\u003c/li\u003e\n    \u003cli\u003eMonoalphabetic: A substitution cipher where each letter in the plaintext is consistently replaced by another letter from a fixed mapping.\u003c/li\u003e\n    \u003cli\u003ePlayfair: A digraph substitution cipher that encrypts pairs of letters together based on a 5x5 grid of letters generated from a keyword.\u003c/li\u003e\n    \u003cli\u003eRail Fence: A transposition cipher where the plaintext is written diagonally in zigzag fashion across a number of \"rails\" and then read off row by row.\u003c/li\u003e\n    \u003cli\u003eVernam (One-Time Pad): An encryption method that uses a random key as long as the message itself, XORing each plaintext character with a corresponding key character.\u003c/li\u003e\n    \u003cli\u003eVigenère: A polyalphabetic substitution cipher where each letter in the plaintext is shifted using a keyword, with each letter of the keyword determining the shift for the corresponding letter in the plaintext.\u003c/li\u003e\n\n  \u003c/ul\u003e\n\n  \u003ch2\u003eInstallation\u003c/h2\u003e\n  \u003col\u003e\n    \u003cli\u003eClone the repository:\u003c/li\u003e\n  \u003c/ol\u003e\n  \u003cpre\u003e\u003ccode\u003egit clone https://github.com/JoeGitHubPro/Cryptography.git\u003c/code\u003e\u003c/pre\u003e\n  \u003col start=\"2\"\u003e\n    \u003cli\u003eInstall the required dependencies.\u003c/li\u003e\n    \u003cli\u003eBuild and run the application using your preferred development environment or IDE.\u003c/li\u003e\n  \u003c/ol\u003e\n\n  \u003ch2\u003eUsage\u003c/h2\u003e\n  \u003cp align=\"center\"\u003e\n    \u003cimg src=\"Cryptography/Win1.PNG\" alt=\"project-image\" style=\"width: 100%; max-width: 600px;\"\u003e\n\u003c/p\u003e\n\n\n  \u003ch2\u003eContributing\u003c/h2\u003e\n  \u003cp\u003eContributions are welcome! If you'd like to contribute to this project, please follow these steps:\u003c/p\u003e\n  \u003col\u003e\n    \u003cli\u003eFork the repository.\u003c/li\u003e\n    \u003cli\u003eCreate a new branch for your feature or bug fix.\u003c/li\u003e\n    \u003cli\u003eMake your changes and commit them.\u003c/li\u003e\n    \u003cli\u003ePush your changes to your forked repository.\u003c/li\u003e\n    \u003cli\u003eSubmit a pull request detailing your changes.\u003c/li\u003e\n  \u003c/ol\u003e\n\n  \u003ch2\u003eLicense\u003c/h2\u003e\n  \u003cp\u003eThis project is licensed under the MIT\u003c/p\u003e\n\n  \u003ch2\u003eContact\u003c/h2\u003e\n  \u003cp\u003eIf you have any questions or suggestions, feel free to reach out to the project owner:\u003c/p\u003e\n  \u003cul\u003e\n    \u003cli\u003eGitHub: \u003ca href=\"https://github.com/JoeGitHubPro\"\u003eJoeGitHubPro\u003c/a\u003e\u003c/li\u003e\n  \u003c/ul\u003e\n\n  \u003ch2\u003eAcknowledgments\u003c/h2\u003e\n  \u003cp\u003eWinForm, C#, DS\u0026A\u003c/p\u003e\n\u003c/body\u003e\n\u003c/html\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjoegithubpro%2Fcryptography","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjoegithubpro%2Fcryptography","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjoegithubpro%2Fcryptography/lists"}