Print all the PE header information in a human readable from.
(self, encoding="utf-8")
| 6061 | return hasattr(self, "DIRECTORY_ENTRY_BASERELOC") |
| 6062 | |
| 6063 | def print_info(self, encoding="utf-8"): |
| 6064 | """Print all the PE header information in a human readable from.""" |
| 6065 | print(self.dump_info(encoding=encoding)) |
| 6066 | |
| 6067 | def dump_info(self, dump=None, encoding="ascii"): |
| 6068 | """Dump all the PE header information into human readable string.""" |