{"id":15101969,"url":"https://github.com/quantam-studios/simpleciphers","last_synced_at":"2026-02-13T12:15:16.986Z","repository":{"id":204621955,"uuid":"712268182","full_name":"Quantam-Studios/SimpleCiphers","owner":"Quantam-Studios","description":"A C# library for plain text encryption and decryption for simple, but fun ciphers.","archived":false,"fork":false,"pushed_at":"2024-12-11T21:50:49.000Z","size":56,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-09-01T06:39:13.984Z","etag":null,"topics":["ciphers","csharp","nuget-package"],"latest_commit_sha":null,"homepage":"","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Quantam-Studios.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","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":"2023-10-31T06:06:11.000Z","updated_at":"2024-12-11T21:50:53.000Z","dependencies_parsed_at":"2024-06-29T20:19:58.302Z","dependency_job_id":"15749825-e4f2-4cf3-8c55-58ee2b664013","html_url":"https://github.com/Quantam-Studios/SimpleCiphers","commit_stats":{"total_commits":23,"total_committers":2,"mean_commits":11.5,"dds":0.4347826086956522,"last_synced_commit":"7729b8aebc78133b4cc05581d04921e3223ce24b"},"previous_names":["quantam-studios/simpleciphers"],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/Quantam-Studios/SimpleCiphers","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Quantam-Studios%2FSimpleCiphers","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Quantam-Studios%2FSimpleCiphers/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Quantam-Studios%2FSimpleCiphers/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Quantam-Studios%2FSimpleCiphers/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Quantam-Studios","download_url":"https://codeload.github.com/Quantam-Studios/SimpleCiphers/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Quantam-Studios%2FSimpleCiphers/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":274583637,"owners_count":25311891,"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-09-11T02:00:13.660Z","response_time":74,"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":["ciphers","csharp","nuget-package"],"created_at":"2024-09-25T18:43:45.544Z","updated_at":"2026-02-13T12:15:16.941Z","avatar_url":"https://github.com/Quantam-Studios.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Simple Ciphers\nA C# package for plain text encryption and decryption for simple, but fun ciphers.\n# Add to Project\nVia `dotnet`:\n```cs\ndotnet add package simple-ciphers --version 2.3.0\n```\nVia `PackageReference` in your `.csproj` file:\n```cs\n\u003cPackageReference Include=\"simple-ciphers\" Version=\"2.3.0\" /\u003e\n```\n# `Encryption`\nUse `A1Z26()` to substitute letters for their corresponding positions.\n```cs\nEncryption.A1Z26(\"hello world!\");\n// returns: 8-5-12-12-15 23-15-18-12-4!\n```\nUse `Atbash()` to swap letters to their opposite positions.\n```cs\nEncryption.Atbash(\"hello world!\");\n// returns: svool dliow!\n```\nUse `Caesar()` for shift ciphers.\n```cs\nEncryption.Caesar(\"hello world!\", 3);\n// returns: khoor zruog!\n```\nUse `Morse()` to substitute letters for their morse code equivalent.\n```cs\nEncryption.Morse(\"hello world!\");\n// returns: .... . .-.. .-.. --- / .-- --- .-. .-.. -.. -.-.--\n```\nUse `Vigenere()` to cipher with a key.\n```cs\nEncryption.Vigenere(\"hello world!\", \"key\");\n// returns: rijvs uyvjn!\n```\nUse `Binary()` to cipher with Binary.\n```cs\nEncryption.Binary(\"hello world!\");\n// returns: 01101000 01100101 01101100 01101100 01101111 00100000 01110111 01101111 01110010 01101100 01100100 00100001\n```\n# `Decryption`\nUse `A1Z26()` to substitute numbers for their corresponding letters.\n```cs\nDecryption.A1Z26(\"8-5-12-12-15 23-15-18-12-4!\");\n// returns: hello world!\n```\nUse `Atbash()` to swap letters to their opposite positions.\n```cs\nDecryption.Atbash(\"svool dliow!\");\n// returns: hello world!\n```\nUse `Caesar()` for shift ciphers.\n```cs\nDecryption.Caesar(\"khoor zruog!\", 3);\n// returns: hello world!\n```\nUse `Morse()` to substitute morse code for their letter and/or symbol equivalent.\n```cs\nDecryption.Morse(\".... . .-.. .-.. --- / .-- --- .-. .-.. -.. -.-.--\");\n// returns: hello world!\n```\nUse `Vigenere()` to decipher with a key.\n```cs\nDecryption.Vigenere(\"rijvs uyvjn!\", \"key\");\n// returns: hello world!\n```\nUse `Binary()` to decipher with Binary.\n```cs\nDecryption.Binary(\"01101000 01100101 01101100 01101100 01101111 00100000 01110111 01101111 01110010 01101100 01100100 00100001\");\n// returns: hello world!\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fquantam-studios%2Fsimpleciphers","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fquantam-studios%2Fsimpleciphers","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fquantam-studios%2Fsimpleciphers/lists"}