{"id":26871744,"url":"https://github.com/eocode/cipher","last_synced_at":"2025-07-19T13:13:45.306Z","repository":{"id":56629883,"uuid":"271400593","full_name":"eocode/Cipher","owner":"eocode","description":"Python cipher CLI","archived":false,"fork":false,"pushed_at":"2020-10-27T22:38:37.000Z","size":109,"stargazers_count":3,"open_issues_count":1,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-06-21T15:05:58.494Z","etag":null,"topics":["cipher","cli","encryption-decryption","project","python","software-engineering"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/eocode.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2020-06-10T22:43:03.000Z","updated_at":"2021-11-09T11:50:07.000Z","dependencies_parsed_at":"2022-08-15T22:20:11.346Z","dependency_job_id":null,"html_url":"https://github.com/eocode/Cipher","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/eocode/Cipher","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eocode%2FCipher","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eocode%2FCipher/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eocode%2FCipher/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eocode%2FCipher/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/eocode","download_url":"https://codeload.github.com/eocode/Cipher/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eocode%2FCipher/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":261143143,"owners_count":23115672,"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":["cipher","cli","encryption-decryption","project","python","software-engineering"],"created_at":"2025-03-31T07:30:36.934Z","updated_at":"2025-06-21T15:06:02.211Z","avatar_url":"https://github.com/eocode.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Cypher (CLI)\u003c!-- omit in toc --\u003e\n\n\u003e Cipher your files made simple\n\n\u003cdiv align=\"center\"\u003e\n  \u003cimg src=\"img/cipher.png\"\u003e\n\u003c/div\u003e\n\n## Content\u003c!-- omit in toc --\u003e\n- [Features](#features)\n- [How to run](#how-to-run)\n- [Quick guide](#quick-guide)\n  - [Create a basic structure for cipher and decipher](#create-a-basic-structure-for-cipher-and-decipher)\n  - [Generate a secure key](#generate-a-secure-key)\n  - [Cipher a file](#cipher-a-file)\n  - [Decipher a file](#decipher-a-file)\n- [How to contribute](#how-to-contribute)\n\n## Features\n* Command line interface\n* Generate secure keys on [base64](https://en.wikipedia.org/wiki/Base64)\n* Cipher files\n* Decipher files\n\n## How to run\n\n* Create enviroment\n\n`python -m venv env`\n\n* Activate enviroment\n\n`cd env/Scripts`\n`activate`\n\n* Install requirements\n\n`pip install pycryptodome`\n\n* Execute interface\n\n`python cipher.py`\n\n\u003cdiv align=\"center\"\u003e\n  \u003cimg src=\"img/1.png\"\u003e\n\u003c/div\u003e\n\n## Quick guide\n\nOnly type a simple command for start.\n\n\u003e For this guide I use a simple .txt file with a \"hello world\" message.\n\n### Create a basic structure for cipher and decipher\n\n`python cipher.py basic-init`\n\n\u003cdiv align=\"center\"\u003e\n  \u003cimg src=\"img/2.png\"\u003e\n\u003c/div\u003e\n\nWhen the command is run, two new folders will created, the original files must be placed in the \"files\" folder.\n\n\u003cdiv align=\"center\"\u003e\n  \u003cimg src=\"img/3.png\"\u003e\n\u003c/div\u003e\n\n### Generate a secure key\n\nYou need a secure key make on base 64 for cipher and decipher your files, type next command:\n\n\u003cdiv align=\"center\"\u003e\n  \u003cimg src=\"img/4.png\"\u003e\n\u003c/div\u003e\n\nWe highly recommend you to store your key in your favorite password manager or in any other secure place.\n\nMove your file to \"files\" folder.\n\n\u003cdiv align=\"center\"\u003e\n  \u003cimg src=\"img/5.png\"\u003e\n\u003c/div\u003e\n\n\n### Cipher a file\n\nType this:\nType the filename and your generated key.\n`python cipher.py encrypt`\n\n\u003cdiv align=\"center\"\u003e\n  \u003cimg src=\"img/6.png\"\u003e\n\u003c/div\u003e\n\nThe generated file is:\n\n\u003cdiv align=\"center\"\u003e\n  \u003cimg src=\"img/7.png\"\u003e\n\u003c/div\u003e\n\n### Decipher a file\n\nMake sure you have a folder with an `encrypt.txt` file.\n\nType this:\n``python cipher.py decrypt``\n\n\u003cdiv align=\"center\"\u003e\n  \u003cimg src=\"img/9.png\"\u003e\n\u003c/div\u003e\n\nYour file:\n\n\u003cdiv align=\"center\"\u003e\n  \u003cimg src=\"img/10.png\"\u003e\n\u003c/div\u003e\n\n# How to contribute\nSend me a pull request or contact me as eocode in social media.\n\n# License\nGNU General Public License v3.0","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feocode%2Fcipher","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Feocode%2Fcipher","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feocode%2Fcipher/lists"}