Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mehdirexon/easygpgtool
A GPG tool to access to GPG commands(built for linux based distributions)
https://github.com/mehdirexon/easygpgtool
debian gnupg gpg gpg-encryption gui-application python python3 ubuntu
Last synced: about 2 hours ago
JSON representation
A GPG tool to access to GPG commands(built for linux based distributions)
- Host: GitHub
- URL: https://github.com/mehdirexon/easygpgtool
- Owner: mehdirexon
- License: mit
- Created: 2023-03-03T12:31:52.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-10-28T19:54:37.000Z (about 1 year ago)
- Last Synced: 2024-11-06T12:08:05.346Z (about 17 hours ago)
- Topics: debian, gnupg, gpg, gpg-encryption, gui-application, python, python3, ubuntu
- Language: Python
- Homepage: https://mehdirexon.ir
- Size: 873 KB
- Stars: 4
- Watchers: 2
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[![status: active](https://github.com/GIScience/badges/raw/master/status/active.svg)](https://github.com/GIScience/badges#active)
# ๐ easyGPG Tool ๐
## Table of Contents* [Introduction](#introduction)
* [Features](#features)
* [Recently changes](#recently-changes)
* [How to use](#how-to-use)
* [Installation](#installation%EF%B8%8F)
* [Acknowledgements](#acknowledgements)
## Introduction๐
+ what is GPG?
GPG (GNU Privacy Guard) is a free and open-source tool for encrypting and signing data and communications. It uses public-key cryptography to ensure the security and privacy of your data. With GPG, you can encrypt your files and messages so that only the intended recipient can read them, and you can also digitally sign your messages to prove their authenticity.
+ what is easyGPG Tool
easyGPG Tool is a tool that allows you to work with GPG easily instead of using the original library.
This GUI version helps you to get rid of typing codes and other stuff. So you can easily do whatever just with forms. ๐## Features๐ก
Why use easyGPG Tool? ๐ปeasyGPG makes it easy for anyone to use GPG for encryption and decryption without having to learn complex command-line codes. With its user-friendly interface, you can quickly and easily manage your keys and perform common tasks such as:
๐ Encrypting your data to keep it safe from prying eyes
๐ Decrypting your data quickly and easily whenever you need to access it
๐ค Exporting your keys to a file for easy transfer between devices
๐ฅ Importing keys from a file to quickly add them to your keychain
๐ Generating a new key with just a few clicks or deleting an existing one if you no longer need it
๐ Keeping track of changes and updates with our detailed patch notes
๐ Easily viewing all your keys in one place with our show keys feature
## Recently changes๐
+ easyGPGTool has been added to pypi
+ new run method has been added## How to use๐
After using ```pip3 install easyGPGTool``` ,create a python file and follow these code:```
from easyGPGTool.core import run
run()
```# Note:
In the new version, installing on a local machine is being developed.
## Installation๐ ๏ธ
### For Debian
```
sudo apt update && sudo apt upgrade
sudo apt install python3 && sudo apt install python3-pip
pip3 install easyGPGTool
```
### For Fedora
```
sudo dnf update && sudo dnf upgrade
sudo dnf install python3 && sudo dnf install python3-pip
pip3 install easyGPGTool
```
### For Arch
```
sudo pacman -Syu
sudo pacman -S python python-pip
pip3 install easyGPGTool
```
### For MacOS
```
xcode-select --install
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
brew install python3
pip3 install easyGPGTool
```
### CentOS/RHEL
```
sudo yum update
sudo yum install python3 python3-pip
pip3 install easyGPGTool
```
### Gentoo
```
sudo emerge --sync && sudo emerge --update world
sudo emerge --ask dev-lang/python dev-python/pip
pip3 install easyGPGTool
```
### Slackware
```
slackpkg update && slackpkg upgrade-all
slackpkg install python
python -m ensurepip
pip install --upgrade pip setuptools wheel
pip install easyGPGTool
```