{"id":23609846,"url":"https://github.com/isfonzar/cryptogo","last_synced_at":"2025-05-12T16:07:12.493Z","repository":{"id":53849180,"uuid":"83319307","full_name":"isfonzar/CryptoGo","owner":"isfonzar","description":"Protect your sensitive files with a password using this simple and easy file encrypter","archived":false,"fork":false,"pushed_at":"2019-04-30T08:42:51.000Z","size":17,"stargazers_count":59,"open_issues_count":0,"forks_count":20,"subscribers_count":4,"default_branch":"master","last_synced_at":"2024-06-20T03:37:50.218Z","etag":null,"topics":["encrypter","encryption","go","golang","password","security"],"latest_commit_sha":null,"homepage":"","language":"Go","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/isfonzar.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":"2017-02-27T14:30:17.000Z","updated_at":"2023-11-29T11:46:19.000Z","dependencies_parsed_at":"2022-08-22T23:30:07.280Z","dependency_job_id":null,"html_url":"https://github.com/isfonzar/CryptoGo","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/isfonzar%2FCryptoGo","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/isfonzar%2FCryptoGo/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/isfonzar%2FCryptoGo/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/isfonzar%2FCryptoGo/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/isfonzar","download_url":"https://codeload.github.com/isfonzar/CryptoGo/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":231501594,"owners_count":18386288,"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":["encrypter","encryption","go","golang","password","security"],"created_at":"2024-12-27T15:14:50.462Z","updated_at":"2024-12-27T15:14:50.903Z","avatar_url":"https://github.com/isfonzar.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\u003cimg src=\"https://cdn.rawgit.com/isfonzar/CryptoGo/c5712336/logo.jpg\"\u003e\u003c/p\u003e\n\n\u003cp align=\"center\"\u003e\n\u003ca href=\"https://github.com/isfonzar/CryptoGo\"\u003e\u003cimg src=\"https://img.shields.io/badge/Language-Go-blue.svg\" alt=\"Language\"\u003e\u003c/a\u003e\n\u003ca href=\"https://goreportcard.com/report/github.com/isfonzar/CryptoGo\"\u003e\u003cimg src=\"https://goreportcard.com/badge/github.com/isfonzar/CryptoGo\" alt=\"GoReportCard\"\u003e\u003c/a\u003e\n\u003ca href=\"https://github.com/isfonzar/CryptoGo/blob/master/LICENSE\"\u003e\u003cimg src=\"https://img.shields.io/badge/License-MIT-blue.svg\" alt=\"License\"\u003e\u003c/a\u003e\n\u003ca href=\"https://github.com/isfonzar/CryptoGo/releases\"\u003e\u003cimg src=\"https://img.shields.io/badge/Status-Beta-brightgreen.svg\" alt=\"Status\"\u003e\u003c/a\u003e\n\u003c/p\u003e\n\n## About CryptoGo\n\nCryptoGo is a simple file encrypter for your day-to-day needs.\n\nCryptoGo's goal is to be a simple tool to encrypt and password protect your files.\n\n## Project Status\n\nCryptoGo is on beta. Pull Requests [are welcome](https://github.com/isfonzar/CryptoGo#social-coding)\n\n![](http://i.imgur.com/KimL2Xr.gif)\n\n## Features\n\n- STUPIDLY [EASY TO USE](https://github.com/isfonzar/CryptoGo#usage)\n- Fast encryption and decryption processes\n- Uses [filecrypt](https://github.com/isfonzar/filecrypt) libs\n- Galois/Counter Mode (GCM) encryption (Extra secure, harder to bruteforce)\n- Encrypts files so they can't be read unless the decrypter is used\n- Protects your files with a password\n\n## Installation\n\n### Option 1: Go Get\n\n```bash\n$ go get github.com/isfonzar/CryptoGo\n$ CryptoGo\n```\n\n### Option 2: From source\n\n```bash\n$ git clone https://github.com/isfonzar/CryptoGo.git\n$ cd CryptoGo/\n$ go get -d\n$ go build *.go\n```\n## Usage\n\n### Encryption\n\n```bash\n# Encrypts a file\n$ CryptoGo encrypt path/to/your/file\n```\n\n### Decryption\n\n```bash\n# Decrypts a file\n$ CryptoGo decrypt path/to/your/file\n```\n\n### Show help\n\n```bash\n$ CryptoGo help\n```\n\n## Program Help\n\n![](http://i.imgur.com/SLimwGt.png)\n\n## Contributing\n\n### Bug Reports \u0026 Feature Requests\n\nPlease use the [issue tracker](https://github.com/isfonzar/CryptoGo/issues) to report any bugs or file feature requests.\n\n### Developing\n\nPRs are welcome. To begin developing, do this:\n\n```bash\n$ git clone --recursive git@github.com:isfonzar/CryptoGo.git\n$ cd CryptoGo/\n```\n\n## Social Coding\n\n1. Create an issue to discuss about your idea\n2. [Fork it] (https://github.com/isfonzar/CryptoGo/fork)\n3. Create your feature branch (`git checkout -b my-new-feature`)\n4. Commit your changes (`git commit -am 'Add some feature'`)\n5. Push to the branch (`git push origin my-new-feature`)\n6. Create a new Pull Request\n7. Profit! :white_check_mark:\n\n## Disclaimer\n\nCryptoGo is still on beta. \nWe will not be held responsible for any file loses that may occur due to bugs or misuse of the program distributed here.\nAlways keep a backup in those cases.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fisfonzar%2Fcryptogo","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fisfonzar%2Fcryptogo","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fisfonzar%2Fcryptogo/lists"}