Toolbox for analyzing and editing pkg application files for psp,ps3, ps4 and ps5, includes the most useful functions you might need.
| 1 | class Archiver: |
| 2 | def __init__(self, index, name, offset, size, bytes_data=None, esfm_analysis=None): |
| 3 | self.index = index |
| 4 | self.name = name |
| 5 | self.offset = offset |
| 6 | self.size = size |
| 7 | self.bytes_data = bytes_data |
| 8 | self.esfm_analysis = esfm_analysis |
| 9 |