mirror of
https://github.com/moonD4rk/HackBrowserData.git
synced 2026-07-18 22:07:18 +02:00
76e2615db2
* refactor(abe): remove --abe-key flag and its global state * refactor(abe): rework scratch protocol and Go/C structure
13 lines
234 B
Go
13 lines
234 B
Go
//go:build windows && !abe_embed
|
|
|
|
package crypto
|
|
|
|
import "fmt"
|
|
|
|
func ABEPayload(arch string) ([]byte, error) {
|
|
return nil, fmt.Errorf(
|
|
"abe: payload not embedded in this build (rebuild with -tags abe_embed; arch=%s)",
|
|
arch,
|
|
)
|
|
}
|