/keys

A desktop app for generating licence keys with RSA signature verification

Primary LanguagePythonGNU General Public License v3.0GPL-3.0

Yocto Keys

Generate licence keys with RSA signature verification

Installation

pip install keys-yocto

Usage

You'll be prompted to make new RSA keys the first time you run the app. If you need to make new keys later, you can do it in the Keys menu.

New RSA keys

The app will remember where you saved the last private key you made. If you need to use a different key than the last one you made or if you moved it, you can change the location of the key in the Keys menu.

Private key

Fill in the user's details and click Sign. Then copy the licence key and send it to the user.

Main window

How to verify licence keys in your app

from keys import key

if key.valid(user, licence_key, pub_key):
    # licence_key is valid
else:
    # licence_key is invalid

Support

Email delvian.valentine@gmail.com for help

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you'd like to change.

Acknowledgements

Licence

Copyright © 2024 Delvian Valentine

This program comes with ABSOLUTELY NO WARRANTY.
This is free software, and you are welcome to redistribute it under certain conditions.
See the GNU General Public License for details.