{"id":21955204,"url":"https://github.com/voltone/aes_crypt","last_synced_at":"2025-03-22T18:50:52.736Z","repository":{"id":57478736,"uuid":"157516304","full_name":"voltone/aes_crypt","owner":"voltone","description":"Elixir package for reading and writing files in AES Crypt format","archived":false,"fork":false,"pushed_at":"2018-11-15T06:29:30.000Z","size":6,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-01T00:12:58.504Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Elixir","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/voltone.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":"2018-11-14T08:31:31.000Z","updated_at":"2023-02-28T19:57:05.000Z","dependencies_parsed_at":"2022-09-17T04:42:35.972Z","dependency_job_id":null,"html_url":"https://github.com/voltone/aes_crypt","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/voltone%2Faes_crypt","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/voltone%2Faes_crypt/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/voltone%2Faes_crypt/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/voltone%2Faes_crypt/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/voltone","download_url":"https://codeload.github.com/voltone/aes_crypt/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245007170,"owners_count":20546143,"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-29T07:29:53.258Z","updated_at":"2025-03-22T18:50:52.711Z","avatar_url":"https://github.com/voltone.png","language":"Elixir","funding_links":[],"categories":[],"sub_categories":[],"readme":"# AESCrypt\n\nRead and write files in [AES Crypt format](https://www.aescrypt.com/aes_file_format.html).\n\n## Usage\n\n```elixir\niex(1)\u003e AESCrypt.write(\"example.aes\", \"Hello, world!\", \"supersecret\")\n:ok\niex(2)\u003e AESCrypt.read(\"example.aes\", \"supersecret\")\n{:ok, \"Hello, world!\", [{\"CREATED_BY\", \"Elixir AESCrypt v0.1.0\"}]}\niex(3)\u003e AESCrypt.read!(\"example.aes\", \"supersecret\")\n\"Hello, world!\"\n```\n\n## Limitations\n\n* The password KDF used by the AES Crypt file format is quite weak by modern\n  standards, potentially allowing brute-force attacks on the passphrase; this\n  is a limitation of the file format, not of this implementation; use a strong\n  passphrase to mitigate the risk, and consider alternative storage formats for\n  highly sensitive data\n* Supports v2 format only\n* Decrypts/encrypts entire contents in memory; no streaming\n* No attempts are made to protect keying material: the passphrase, derived key,\n  file-specific key and plaintext may leak in stack traces, crashdumps, or\n  BEAM introspection functions\n\n## Installation\n\nThe package can be installed by adding `aes_crypt` to your list of dependencies\nin `mix.exs`:\n\n```elixir\ndef deps do\n  [\n    {:aes_crypt, \"~\u003e 0.1.0\"}\n  ]\nend\n```\n\nDocumentation can be found at [https://hexdocs.pm/aes_crypt](https://hexdocs.pm/aes_crypt).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvoltone%2Faes_crypt","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvoltone%2Faes_crypt","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvoltone%2Faes_crypt/lists"}