WithImphash indicates if the import hash (imphash) is calculated as part of PE parsing.
()
| 139 | |
| 140 | // WithImphash indicates if the import hash (imphash) is calculated as part of PE parsing. |
| 141 | func WithImphash() Option { |
| 142 | return func(o *opts) { |
| 143 | o.calcImphash = true |
| 144 | } |
| 145 | } |
| 146 | |
| 147 | // WithCLR indicates if CLR (Common Language Runtime) header is parsed. |
| 148 | func WithCLR() Option { |