{"id":24565047,"url":"https://github.com/devilkiller-ag/parallel-file-encryptor-using-multiprocessing","last_synced_at":"2025-03-17T01:45:00.695Z","repository":{"id":271998665,"uuid":"915046283","full_name":"devilkiller-ag/Parallel-File-Encryptor-using-Multiprocessing","owner":"devilkiller-ag","description":"Parallel File Encryptor using Multiprocessing in C++","archived":false,"fork":false,"pushed_at":"2025-01-11T10:00:11.000Z","size":21,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-01-23T11:36:42.184Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"C++","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/devilkiller-ag.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}},"created_at":"2025-01-10T21:10:05.000Z","updated_at":"2025-01-11T10:00:14.000Z","dependencies_parsed_at":"2025-01-23T11:33:11.391Z","dependency_job_id":null,"html_url":"https://github.com/devilkiller-ag/Parallel-File-Encryptor-using-Multiprocessing","commit_stats":null,"previous_names":["devilkiller-ag/parallel-file-encryptor-using-multiprocessing"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devilkiller-ag%2FParallel-File-Encryptor-using-Multiprocessing","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devilkiller-ag%2FParallel-File-Encryptor-using-Multiprocessing/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devilkiller-ag%2FParallel-File-Encryptor-using-Multiprocessing/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devilkiller-ag%2FParallel-File-Encryptor-using-Multiprocessing/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/devilkiller-ag","download_url":"https://codeload.github.com/devilkiller-ag/Parallel-File-Encryptor-using-Multiprocessing/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243960436,"owners_count":20375101,"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":"2025-01-23T11:33:09.621Z","updated_at":"2025-03-17T01:45:00.689Z","avatar_url":"https://github.com/devilkiller-ag.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"## Parallel File Encryptor using Multiprocessing in C++\n\n\n## Prerequisite to run the project\nCreate a `.env` file having your `encryption_key` in the project root directory.\n\n## How to run the project?\nTo run the whole project run these commands in your terminal:\n1. `make clean` to clean the project.\n2. `make` to build the project.\n3. Run `./encrypt_decrypt` to encrypt and decrypt the file.\n    - It will ask the directory of the files to encrypt/decrypt.\n    - It will then ask task to perform (ENCRYPT/DECRYPT).\n\nTo run the standalone cryption program run these commands in your terminal:\n1. `make clean` to clean the project.\n2. `make cryption` to build the project.\n3. Run `./cryption your_task_data_here` to encrypt/decrypt the data.\n    - It will ask the task to perform (ENCRYPT/DECRYPT).\n\n\n### Prerequisite to debug in VS Code\n\nAdd following files inside the `.vscode` folder:\n\n1. `launch.json`:\n```json\n{\n    \"version\": \"0.2.0\",\n    \"configurations\": [\n        {\n            \"name\": \"Debug encrypt_decrypt\",\n            \"type\": \"cppdbg\",\n            \"request\": \"launch\",\n            \"program\": \"${workspaceFolder}/encrypt_decrypt\",\n            \"args\": [],\n            \"cwd\": \"${workspaceFolder}\",\n            \"preLaunchTask\": \"build\"\n        },\n        {\n            \"name\": \"Debug cryption (standalone)\",\n            \"type\": \"cppdbg\",\n            \"request\": \"launch\",\n            \"program\": \"${workspaceFolder}/cryption\",\n            \"args\": [\"your_task_data_here\"],\n            \"cwd\": \"${workspaceFolder}\",\n            \"preLaunchTask\": \"build\"\n        }\n    ]\n}\n```\nFor linux use `\"type\": \"cppdbg\"`, for mac use `\"type\": \"lldb\"`, and for windows use `\"type\": \"gdb\"`.\n\n\n2. `task.json`:\n```json\n{\n    \"version\": \"2.0.0\",\n    \"tasks\": [\n        {\n            \"type\": \"shell\",\n            \"label\": \"build\",\n            \"command\": \"make\",\n            \"args\": [],\n            \"options\": {\n                \"cwd\": \"${workspaceFolder}\"\n            },\n            \"problemMatcher\": [\n                \"$gcc\"\n            ],\n            \"group\": {\n                \"kind\": \"build\",\n                \"isDefault\": true\n            }\n        }\n    ]\n}\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevilkiller-ag%2Fparallel-file-encryptor-using-multiprocessing","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdevilkiller-ag%2Fparallel-file-encryptor-using-multiprocessing","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevilkiller-ag%2Fparallel-file-encryptor-using-multiprocessing/lists"}