WithSecurity indicates if the security directory is parsed to extract signature information like certificates or Authenticode hashes.
()
| 132 | // WithSecurity indicates if the security directory is parsed to extract signature information |
| 133 | // like certificates or Authenticode hashes. |
| 134 | func WithSecurity() Option { |
| 135 | return func(o *opts) { |
| 136 | o.parseSecurity = true |
| 137 | } |
| 138 | } |
| 139 | |
| 140 | // WithImphash indicates if the import hash (imphash) is calculated as part of PE parsing. |
| 141 | func WithImphash() Option { |
no outgoing calls
no test coverage detected