Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2021-12-03 | extract_v3: make sure empty file's hash is copied too | Timo Teräs | 1 | -2/+2 | |
fixes #10785 | |||||
2021-11-11 | extract_v3: fix extraction of zero length files | Timo Teräs | 1 | -2/+3 | |
The apk_istream is null for zero length files, and needs special handling. fixes #10784 | |||||
2021-11-09 | database: implement uvol support | Timo Teräs | 1 | -17/+14 | |
by adding an abstraction layer to the file system | |||||
2021-10-27 | db, add: support adding v3 package files | Timo Teräs | 1 | -0/+3 | |
2021-09-03 | extract: pass root object instead of database | Timo Teräs | 1 | -6/+9 | |
2021-08-23 | extract: support v3 index verification | Timo Teräs | 1 | -5/+28 | |
2021-07-30 | verify: support v3 packages | Timo Teräs | 1 | -3/+23 | |
2021-07-30 | extract: use extraction api, and implement it for v3 packages | Timo Teräs | 1 | -1/+201 | |
The extract applet now works with both v2 and v3 packages. | |||||
2021-07-27 | Refactor .apk extraction code | Timo Teräs | 1 | -0/+16 | |
This moves and isolates the tar code to tar.c. And the actual file extraction to disk is moved to extract.c. A new API is introduced and used for v2 file extraction. This essentially moves and isolates the apk_sign_ctx_* beast into extract_v2.c and offers a saner interface to handling packages. A place holder is added for v3 extraction. |