{"id":29211956,"url":"https://github.com/chrissch-dev/file_encryption_tool","last_synced_at":"2025-08-12T23:02:18.566Z","repository":{"id":300877735,"uuid":"1007456535","full_name":"ChrisSch-dev/file_encryption_tool","owner":"ChrisSch-dev","description":"A File Encryption Tool made with Rust with a CLI Interface","archived":false,"fork":false,"pushed_at":"2025-06-24T03:10:53.000Z","size":48,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-07-02T22:06:16.533Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Rust","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/ChrisSch-dev.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-06-24T03:10:25.000Z","updated_at":"2025-06-24T03:11:04.000Z","dependencies_parsed_at":"2025-06-24T04:24:38.965Z","dependency_job_id":"c5932d64-5d9e-49a2-b899-50423063edf9","html_url":"https://github.com/ChrisSch-dev/file_encryption_tool","commit_stats":null,"previous_names":["chrissch-dev/file_encryption_tool"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ChrisSch-dev/file_encryption_tool","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ChrisSch-dev%2Ffile_encryption_tool","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ChrisSch-dev%2Ffile_encryption_tool/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ChrisSch-dev%2Ffile_encryption_tool/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ChrisSch-dev%2Ffile_encryption_tool/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ChrisSch-dev","download_url":"https://codeload.github.com/ChrisSch-dev/file_encryption_tool/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ChrisSch-dev%2Ffile_encryption_tool/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":270149345,"owners_count":24535728,"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-08-12T02:00:09.011Z","response_time":80,"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":[],"created_at":"2025-07-02T22:06:15.383Z","updated_at":"2025-08-12T23:02:18.476Z","avatar_url":"https://github.com/ChrisSch-dev.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# File Encryption Tool\n\nA modular, extensible file encryption tool written in Rust.  \n**Features include:**\n\n- AES-GCM and ChaCha20-Poly1305 encryption\n- Interactive password prompt (with strength meter)\n- Support for large files (with progress bar)\n- File integrity verification (HMAC/SHA256)\n- Compression before encryption\n- Secure file shredding (wiping originals)\n- Batch \u0026 wildcard file processing\n- File metadata preservation (timestamps, permissions)\n- Encrypted filenames\n- Keyfile support (use key files for encryption)\n- Configurable algorithms and parameters\n- Config file support\n- Log/audit trail support\n- Optional GUI frontend (egui/eframe)\n- Optional cloud integration (AWS S3, Dropbox)\n- Extensive error handling\n- Integration and property-based tests\n\n---\n\n## Usage\n\n```\ncargo run -- \u003cencrypt|decrypt\u003e \u003cinput_file\u003e \u003coutput_file\u003e [options]\n```\nOr, for the GUI:\n```\ncargo run --features gui\n```\n\n### Example\n\n```\ncargo run -- encrypt secret.txt secret.txt.enc\ncargo run -- decrypt secret.txt.enc secret.txt\n```\n\nYou will be prompted for a password (input is hidden and strength is shown).\n\n---\n\n## Configuration\n\nYou can use a TOML config file for default settings (see `config/settings.rs`).  \nExample:\n```toml\nalgorithm = \"aes-gcm\"\nkeyfile = \"/path/to/keyfile\"\ncompress = true\nverify_integrity = true\ncloud_upload = \"s3\"\n```\n\n---\n\n## Features\n\n- **Encryption Algorithms:** AES-256-GCM (default), ChaCha20-Poly1305 (optional)\n- **Compression:** Optionally compress files before encryption\n- **Progress Bar:** See progress for large files\n- **Batch Processing:** Encrypt/decrypt multiple files at once\n- **Cloud Integration:** Upload/download encrypted files from S3 or Dropbox\n- **Secure Shredding:** Overwrite and remove originals\n- **Password Strength Meter:** Get feedback on password strength\n- **Keyfile Support:** Use a file as part of the key\n- **GUI:** Optional desktop user interface\n\n---\n\n## Building\n\nRequires Rust 1.70+.\n\n```\ncargo build --release\n```\n\n### Optional Features\n\n- `gui` — Enables GUI frontend\n- `cloud` — Enables S3 and Dropbox integration\n- `compression` — Enables compression support\n- `extra-ciphers` — Enables ChaCha20-Poly1305\n\nEnable with:\n```\ncargo build --release --features \"gui cloud compression extra-ciphers\"\n```\n\n---\n\n## Testing\n\n```\ncargo test\n```\n\n---\n\n## Security Notes\n\n- Passwords are never stored or logged.\n- Uses PBKDF2 (100,000 iterations) for key derivation by default.\n- Salt and nonce are randomly generated per file.\n- HMAC/SHA256 verifies file integrity.\n- Shredding overwrites files before deletion (best effort).\n\n---\n\n## License\n\nMIT\n\n---\n\n## Contributions\n\nContributions are welcome!  \nPlease open issues or pull requests.\n\n---\n\n## Authors\n\n- [ChrisSch-dev](https://github.com/ChrisSch-dev)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fchrissch-dev%2Ffile_encryption_tool","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fchrissch-dev%2Ffile_encryption_tool","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fchrissch-dev%2Ffile_encryption_tool/lists"}