{"id":25424743,"url":"https://github.com/president-xd/cryptix","last_synced_at":"2026-03-07T12:37:11.407Z","repository":{"id":254006868,"uuid":"844049019","full_name":"president-xd/Cryptix","owner":"president-xd","description":"The Cryptix a powerful python library which provides decryption functions for various ciphers. Below are examples demonstrating how to use the decryption functions for different ciphers included in the package.","archived":false,"fork":false,"pushed_at":"2025-10-16T23:23:41.000Z","size":77,"stargazers_count":5,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-01-07T08:17:48.675Z","etag":null,"topics":["cryptography","cryptography-algorithms","cryptography-library","cryptography-project","cryptography-tools","decoder","decoders","decryptor","decryptor-hash","library"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/president-xd.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","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},"funding":{"github":["president-xd","el-noir","Pickachu19","eros938","sys-panthered"],"buy_me_a_coffee":["president.xd"]}},"created_at":"2024-08-18T08:12:03.000Z","updated_at":"2025-10-16T23:11:05.000Z","dependencies_parsed_at":"2024-08-28T11:33:34.725Z","dependency_job_id":"e4248878-b74e-453e-95fb-5a9acc2ac677","html_url":"https://github.com/president-xd/Cryptix","commit_stats":null,"previous_names":["president-xd/cryptix"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/president-xd/Cryptix","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/president-xd%2FCryptix","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/president-xd%2FCryptix/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/president-xd%2FCryptix/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/president-xd%2FCryptix/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/president-xd","download_url":"https://codeload.github.com/president-xd/Cryptix/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/president-xd%2FCryptix/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30213266,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-07T12:15:00.571Z","status":"ssl_error","status_checked_at":"2026-03-07T12:15:00.217Z","response_time":53,"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":["cryptography","cryptography-algorithms","cryptography-library","cryptography-project","cryptography-tools","decoder","decoders","decryptor","decryptor-hash","library"],"created_at":"2025-02-16T23:17:29.739Z","updated_at":"2026-03-07T12:37:11.374Z","avatar_url":"https://github.com/president-xd.png","language":"Python","funding_links":["https://github.com/sponsors/president-xd","https://github.com/sponsors/el-noir","https://github.com/sponsors/Pickachu19","https://github.com/sponsors/eros938","https://github.com/sponsors/sys-panthered","https://buymeacoffee.com/[\"president.xd\"]"],"categories":[],"sub_categories":[],"readme":"# Cryptix Package Usage\n\n## Overview\n\nThe Cryptix a powerful python library which provides decryption functions for various ciphers. Below are examples demonstrating how to use the decryption functions for different ciphers included in the package.\n\n## Supported Ciphers\n\n- **Vigenère Cipher**\n- **Affine Cipher**\n- **Hill Cipher**\n- **Beaufort Cipher**\n- **Rail Fence Cipher**\n- **Playfair Cipher**\n- **One-Time Pad Cipher**\n- **XOR Cipher**\n- **RSA Cipher**\n- **Caeser Cipher**\n- **Bacon Cipher**\n- **AtBash Cipher**\n- **RO13**\n- **ROT5**\n- **Columnar Transposition Cipher**\n\n## Supported Encodings\n- **Binary**\n- **Hexadecimal**\n- **Octal**\n- **ASCII**\n- **URL Encoding**\n- **Unicode Point**\n- **Base64**\n- **Base32**\n- **Base58**\n- **Morse Code**\n\n## Sample Usage\n\n### Caesar Cipher\n\n```python\nfrom Cryptix import Cryptix\n\nciphertext = \"Khoor Zruog\"  # Encrypted with a shift of 3\nshift = 3\nplaintext = Cryptix.decrypt_caesar(ciphertext, shift)\nprint(\"Caesar Cipher Decryption:\", plaintext)\n```\n\n## Conclusion\nSimply there is the logic to decrypt all these algorthims, like if you want any cipher to decrypt, follow the trick below:\n```python\nfrom Cryptix import Cryptix\nciphertext = \"Xhpc yb fggw\"  # Example encrypted text\nkey_matrix = [[6, 24, 1], [13, 16, 10], [20, 17, 15]]\nplaintext = Cryptix.decrypt_hill(ciphertext, key_matrix)\nprint(\"Hill Cipher Decryption:\", plaintext)\n\n```\nJust you want to type `decrypt_name`, like `decrypt_hill_cipher`, then either you want to print it or use a variable to store it and then print it.\nThe above example showed us that if you want to print it, first by saving its returing value to variable and then printing it.\n\n### Other way to do\n```python\nfrom Cryptix import Cryptix\nprint(decrypt_caeser_cipher(\"HERE CIPHER TEXT COMES\", \"HERE COMES THE SWIFT FOR IT\"))\n```\n\nSimilary you can do it for decoding the mentioned encodings you have to use.\n```python\nencoded_text = \"+++++++......++++++,-------\"  # Example encoded text\nplaintext = Cryptix.decode_morse_code(encoded_text)\nprint(\"Morse Code decoded text:\", encoded_text)\n```\n\n### Other way to do it\n```python\nfrom Cryptix import Cryptix\nprint(\"Morse Code decoded text:\", encoded_text)\n```\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpresident-xd%2Fcryptix","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpresident-xd%2Fcryptix","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpresident-xd%2Fcryptix/lists"}