-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
46f52d5
commit 293f1ce
Showing
1 changed file
with
30 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# notsotuf | ||
|
||
A simple software updater, built on top of [python-tuf][1], the reference implementation for [TUF][2] (The Update Framework). | ||
|
||
The `notsotuf` package was inspired by [PyUpdater][3]. | ||
|
||
## Overview | ||
|
||
Borrowing `tuf` terminology, we have tools for the *repo* side and for the *client* side. | ||
|
||
The *repo* tools are used by the app developer to: | ||
|
||
- create update files (e.g. using PyInstaller) | ||
- sign the resulting files (cryptographically) | ||
- deploy these files to a server | ||
|
||
The *client* tools are used by the app itself to: | ||
|
||
- check for updates | ||
- download update files | ||
- apply the update files | ||
|
||
The `tuf` package is used under the hood to check for updates and download update files in a secure manner, so `notsotuf` can safely apply the update. | ||
See the [tuf docs][4] for more information. | ||
|
||
|
||
[1]: https://github.com/theupdateframework/python-tuf | ||
[2]: https://theupdateframework.io/ | ||
[3]: https://www.pyupdater.org/ | ||
[4]: https://theupdateframework.io/overview/#software-updates-101 |