{"id":47444065,"url":"https://github.com/kanav99/AES.jl","last_synced_at":"2026-04-06T13:00:54.586Z","repository":{"id":61800712,"uuid":"214611586","full_name":"kanav99/AES.jl","owner":"kanav99","description":"Advanced Encryption Standard On-the-Fly mode in Julia","archived":false,"fork":false,"pushed_at":"2020-08-19T10:13:03.000Z","size":81,"stargazers_count":12,"open_issues_count":4,"forks_count":3,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-09-21T21:31:44.224Z","etag":null,"topics":["aes","cryptography","julia"],"latest_commit_sha":null,"homepage":"","language":"Julia","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/kanav99.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2019-10-12T08:43:22.000Z","updated_at":"2025-01-02T18:04:14.000Z","dependencies_parsed_at":"2022-10-21T11:45:26.058Z","dependency_job_id":null,"html_url":"https://github.com/kanav99/AES.jl","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/kanav99/AES.jl","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kanav99%2FAES.jl","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kanav99%2FAES.jl/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kanav99%2FAES.jl/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kanav99%2FAES.jl/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/kanav99","download_url":"https://codeload.github.com/kanav99/AES.jl/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kanav99%2FAES.jl/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31473271,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-06T08:36:52.050Z","status":"ssl_error","status_checked_at":"2026-04-06T08:36:51.267Z","response_time":112,"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":["aes","cryptography","julia"],"created_at":"2026-03-23T06:00:59.902Z","updated_at":"2026-04-06T13:00:54.581Z","avatar_url":"https://github.com/kanav99.png","language":"Julia","funding_links":[],"categories":["Cryptography"],"sub_categories":["Symmetric Encryption"],"readme":"# AES.jl\n\n[![Build Status](https://travis-ci.org/kanav99/AES.jl.svg?branch=master)](https://travis-ci.org/kanav99/AES.jl)\n\nAES On-the-Fly mode in Julia\n\n## API\n```julia\nusing AES\n\n# make a new key\nk = [0x2b, 0x7e, 0x15, 0x16, 0x28, 0xae, 0xd2, 0xa6, 0xab, 0xf7, 0x15, 0x88, 0x09, 0xcf, 0x4f, 0x3c]\nkey = AES128Key(k)\n\n# make a cipher object\ncipher = AESCipher(;key_length=128, mode=AES.CBC, key=key)\n\n# encrypt!\nplaintext = \"The quick brown fox jumps over the lazy dog.\"\nct = encrypt(plaintext, cipher)\npt = decrypt(ct, cipher)\n@assert pt === plaintext\n\n# you can set custom initialization vector\niv = [0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f]\nct = encrypt(plaintext, cipher; iv=iv)\npt = decrypt(ct, cipher)\n\n@assert pt == transcode(UInt8, plaintext)\n# or, if it's known that the original plaintext was valid UTF-8\n@assert String(pt) == plaintext\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkanav99%2FAES.jl","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkanav99%2FAES.jl","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkanav99%2FAES.jl/lists"}