Skip to main content

Wrapper to use keyctl command in Python

Project description

PyPI Package version PyPI Python version License

python-keyctl

Basic management of keys in the Linux kernel keyring in Python. Also comes with a small gui.

Description

This is a small library to make use of some functions of the kernel keyring in Python. You can read, add and delete keys.

It simply uses the keyctl command (invoking it via subprocess), so this util must be installed.

Available functions:

  • list (list all keys in keyring)
  • describe (retrieve key name/description)
  • read/pipe/print (retrieve key content)
  • update (modify key content)
  • add (add key)
  • revoke/unlink (delete key)
  • search/request (search for a key by name)
  • clear (remove all keys from keyring)

There are many more functions with keys in the kernel keyring (e.g. permissions) that is needed for proper keymanagement. But for my usecase I just needed the given simple functionality.

:warning: You might need to link your keyrings (e.g. for the testcases using the default keyring) to have proper permissions. E.g.:

$ keyctl link @u @s

Requirements

Python 3.9

$ sudo apt install python3.9
$ python --version
Python 3.9.18

pip

$ sudo apt install python3-pip
$ pip --version
pip 23.3.2 from .... (python 3.9)

The 'keyctl' command

$ sudo apt install keyutils
$ dpkg -s keyutils | grep Version
Version: 1.6.1

If you want to use the GUI, you also need PySide6

$ pip install pyside6
$ python3 -c "import PySide6; print(PySide6.__version__)"
6.6.1

Installation

$ pip install keyctl

Ready to use.

Usage

Module

Get all keys:

from keyctl import Key
keylist = Key.list()
for mykey in keylist:
    print(mykey.id)

Read existing key:

from keyctl import Key
mykey = Key(123)
print(mykey.name)
print(mykey.data)
print(mykey.data_hex)

Find key by name:

from keyctl import Key
mykey = Key.search('test key')
print(mykey.id)

Add key:

from keyctl import Key
mykey = Key.add('test key', 'test content')
print(mykey.id)

Delete key:

from keyctl import Key
mykey = Key(123)
mykey.delete()

Update key:

from keyctl import Key
mykey = Key(123)
mykey.update('new content')

GUI

To open the GUI, run the installed command.

$ keyctlgui

GUI Screenshot

Development

Warning

If you run the integrated tests, your user keyring will be cleared. Don't do this when you have active keys e.g. for encryption.

Similar projects

Similar projects you might want to check out:

License

GPL-3.0
see LICENSE file

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

keyctl-0.5.tar.gz (22.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

keyctl-0.5-py3-none-any.whl (21.2 kB view details)

Uploaded Python 3

File details

Details for the file keyctl-0.5.tar.gz.

File metadata

  • Download URL: keyctl-0.5.tar.gz
  • Upload date:
  • Size: 22.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.18

File hashes

Hashes for keyctl-0.5.tar.gz
Algorithm Hash digest
SHA256 1edd6e1b5b17982dbc40163833db8d6498006aa9dd60c847a669a690d8e2eeaf
MD5 595325340b3ebaa1a52e53520a9d412b
BLAKE2b-256 00bb576ce1e2a0fd9dc80f413f3dacb9f2b1756fbd7d11464cc96f6fd933d322

See more details on using hashes here.

File details

Details for the file keyctl-0.5-py3-none-any.whl.

File metadata

  • Download URL: keyctl-0.5-py3-none-any.whl
  • Upload date:
  • Size: 21.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.18

File hashes

Hashes for keyctl-0.5-py3-none-any.whl
Algorithm Hash digest
SHA256 dce54fd6e2f5c4836001af039eb99ab282dd2f043ab23f8962e0474f99c7624f
MD5 18e7e1962c2e01132bcd6385f40a9bff
BLAKE2b-256 8a0ccc5d12d8acfabc3acab50a7eb1e05cad9c27604fb0ff7de44f015ea0f828

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page