{"id":25879639,"url":"https://github.com/dubniczky/cryptolab","last_synced_at":"2026-06-10T10:31:44.297Z","repository":{"id":279870070,"uuid":"940178557","full_name":"dubniczky/CryptoLab","owner":"dubniczky","description":"A hands-on cryptography repository containing implementations of fundamental encryption, decryption, hashing, padding, and random number generation techniques. ","archived":false,"fork":false,"pushed_at":"2026-05-18T16:27:11.000Z","size":33,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-05-18T18:31:38.807Z","etag":null,"topics":["cryptography","encryption","hashing","padding","python"],"latest_commit_sha":null,"homepage":"","language":"Python","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/dubniczky.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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-02-27T18:34:00.000Z","updated_at":"2026-05-18T16:27:16.000Z","dependencies_parsed_at":"2025-02-28T07:20:10.228Z","dependency_job_id":null,"html_url":"https://github.com/dubniczky/CryptoLab","commit_stats":null,"previous_names":["dubniczky/cryptolab"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/dubniczky/CryptoLab","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dubniczky%2FCryptoLab","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dubniczky%2FCryptoLab/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dubniczky%2FCryptoLab/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dubniczky%2FCryptoLab/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dubniczky","download_url":"https://codeload.github.com/dubniczky/CryptoLab/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dubniczky%2FCryptoLab/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34149132,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-10T02:00:07.152Z","response_time":89,"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":["cryptography","encryption","hashing","padding","python"],"created_at":"2025-03-02T13:19:38.825Z","updated_at":"2026-06-10T10:31:44.269Z","avatar_url":"https://github.com/dubniczky.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Cryptographic Examples\n\n## Implementations\n\n### Random Number Generators\n| Name | Lines | CC | CC Rank | Halstead Volume | Halstead Length | Halstead Difficulty |\n|-|-|-|-|-|-|-|\n| [xorshift](symmetric/xorshift.py) | 6 | 1 | A | 120.0 | 30 | 4.5 |\n| [sine](symmetric/sine.py) | 5 | 1 | A | 51.9 | 15 | 1.9 |\n| [lcg](symmetric/lcg.py) | 4 | 1 | A | 39.9 | 12 | 2.7 |\n| [urandom](symmetric/urandom.py) | 2 | 1 | A | 15.5 | 6 | 1.0 |\n| [logimap](symmetric/logimap.py) | 4 | 1 | A | 25.3 | 9 | 1.2 |\n\n### Block Cipher Padding\n| Name | Lines | CC | CC Rank | Halstead Volume | Halstead Length | Halstead Difficulty |\n|-|-|-|-|-|-|-|\n| [x923](symmetric/x923.py) | 6 | 4 | A | 135.7 | 30 | 5.3 |\n| [zero](symmetric/zero.py) | 5 | 3 | A | 103.7 | 24 | 4.3 |\n| [iso7816_4](symmetric/iso7816_4.py) | 7 | 3 | A | 100.1 | 24 | 4.0 |\n| [pkcs7](symmetric/pkcs7.py) | 4 | 3 | A | 87.6 | 21 | 4.5 |\n| [oaep](symmetric/oaep.py) | 18 | 4 | A | 265.0 | 54 | 3.6 |\n\n### Hash Functions\n| Name | Lines | CC | CC Rank | Halstead Volume | Halstead Length | Halstead Difficulty |\n|-|-|-|-|-|-|-|\n| [md5](symmetric/md5.py) | 19 | 2 | A | 114.7 | 27 | 3.2 |\n\n### Symmetric Encryption\n| Name | Lines | CC | CC Rank | Halstead Volume | Halstead Length | Halstead Difficulty |\n|-|-|-|-|-|-|-|\n| [tea](symmetric/tea.py) | 11 | 2 | A | 297.3 | 60 | 3.8 |\n| [rcaesar](symmetric/rcaesar.py) | 13 | 3 | A | 98.1 | 24 | 2.5 |\n| [otp](symmetric/otp.py) | 4 | 3 | A | 15.5 | 6 | 1.0 |\n| [vignere](symmetric/vignere.py) | 15 | 3 | A | 80.0 | 21 | 1.9 |\n| [caesar](symmetric/caesar.py) | 11 | 3 | A | 51.9 | 15 | 1.9 |\n| [feistel](symmetric/feistel.py) | 8 | 3 | A | 66.6 | 18 | 1.8 |\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdubniczky%2Fcryptolab","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdubniczky%2Fcryptolab","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdubniczky%2Fcryptolab/lists"}