diff --git a/main.go b/main.go index bcc9dd7..c34a920 100644 --- a/main.go +++ b/main.go @@ -49,7 +49,7 @@ func init() { flagSet.BoolVar(&flagGarbleLiterals, "literals", false, "Obfuscate literals such as strings") flagSet.BoolVar(&flagGarbleTiny, "tiny", false, "Optimize for binary size, losing the ability to reverse the process") flagSet.StringVar(&flagDebugDir, "debugdir", "", "Write the garbled source to a directory, e.g. -debugdir=out") - flagSet.StringVar(&flagSeed, "seed", "", "Provide a base64-encoded seed, e.g. -seed=o9WDTZ4CN4w=\nFor a random seed, provide -seed=random") + flagSet.StringVar(&flagSeed, "seed", "", "Provide a base64-encoded seed, e.g. -seed=o9WDTZ4CN4w\nFor a random seed, provide -seed=random") } func usage() { @@ -261,7 +261,20 @@ func mainErr(args []string) error { } flagSeed = "random;" + base64.StdEncoding.EncodeToString(seed) + } else { + flagSeed = strings.TrimRight(flagSeed, "=") + seed, err := base64.RawStdEncoding.DecodeString(flagSeed) + if err != nil { + return fmt.Errorf("error decoding seed: %v", err) + } + + if len(seed) != 0 && len(seed) < 8 { + return fmt.Errorf("the seed needs to be at least 8 bytes, but is only %v bytes", len(seed)) + } + + flagSeed = base64.StdEncoding.EncodeToString(seed) } + os.Setenv("GARBLE_SEED", flagSeed) if flagDebugDir != "" { diff --git a/testdata/scripts/seed.txt b/testdata/scripts/seed.txt index 036e12c..c49d8de 100644 --- a/testdata/scripts/seed.txt +++ b/testdata/scripts/seed.txt @@ -1,7 +1,7 @@ env GOPRIVATE=test/main # Check the binary with a given base64 encoded seed -garble -literals -seed=OQg9kACEECQ= build +garble -literals -seed=OQg9kACEECQ build exec ./main$exe cmp stderr main.stdout ! binsubstr main$exe 'teststring' 'teststringVar' 'imported var value' 'ImportedVar' @@ -17,7 +17,7 @@ bincmp main$exe main_old$exe # Also check that a different seed leads to a different binary cp main$exe main_old$exe rm main$exe -garble -literals -seed=NruiDmVz6/s= build +garble -literals -seed=NruiDmVz6/s build ! bincmp main$exe main_old$exe # Check the random binary