Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Decompiler ¶
type Decompiler interface {
// ExePath returns the executable path for the decompiler object.
ExePath() string
// Setup performs any necessary setup for the decompiler.
Setup() error
// Teardown performs any necessary teardown for the decompiler.
Teardown() error
// Decompile takes a string path to a file and returns the decompiled bytes of that file or an error.
Decompile(path string) ([]byte, error)
}
Decompiler describes an object that can be used to decompile a binary.
func JavaDecompiler ¶
func JavaDecompiler(name string) Decompiler
Click to show internal directories.
Click to hide internal directories.