summaryrefslogtreecommitdiff
path: root/src/extract_v3.c
AgeCommit message (Collapse)AuthorFilesLines
2021-08-23extract: support v3 index verificationTimo Teräs1-5/+28
2021-07-30verify: support v3 packagesTimo Teräs1-3/+23
2021-07-30extract: use extraction api, and implement it for v3 packagesTimo Teräs1-1/+201
The extract applet now works with both v2 and v3 packages.
2021-07-27Refactor .apk extraction codeTimo Teräs1-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.