Push 0.10.0

This commit is contained in:
Oracle 2026-05-18 16:31:58 +02:00
parent 266f3fc76d
commit 12c05afa57
Signed by: Oracle
SSH key fingerprint: SHA256:x4/RtnjUyuHkdvmwNDsWSfcfF1V5PNr3OpriZqOvCX8
25 changed files with 2016 additions and 645 deletions

53
docs/README.md Normal file
View file

@ -0,0 +1,53 @@
# LibRay 1.0.0 Specification
**Note**
This specification has not been implemented yet.
**Note**
Work in progress.
## User interaction
Here is a flow diagram to explain the different ways a user can interact with LibRay:
![LiBray flow][flow]
As you can see there are three main routes:
1. The user has a key (in hex)
2. The user has an .ird
3. The user has nothing
It is assumed that no. 3 is the most common way to use LibRay, simply give it your .iso file and let LibRay decrypt it.
## Database
LiBray bundles a database containing two tables:
- ird: containing parsed data from various .ird dumps
- redump: containing parsed data from redump
![LibRay DB tables][tables]
## Dependencies
- crypto: `pycryptodomex`
- progressbar: `tqdm`
- http/https: `requests`
- html: `beautifulsoup4`
In previous versions there were problems where dependencies interfered with eachother (notably, `crypto` vs `pycrypto` vs `pycryptodome`), so 1.0.0 and above uses `pycryptodomex` which is standalone from the previously mentioned packages.
## Packaging
- [Poetry](https://python-poetry.org/)
[flow]: flow.png "LibRay user interaction flowchart"
[tables]: tables.png "LibRay database tables"