You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
1.3 KiB
1.3 KiB
Changelog
Unreleased
This release of Garble drops support for Go 1.15.x, which is necessary for some of the enhancements below:
garble test
allows running Go tests built with obfuscationgarble reverse
allows de-obfuscating output like stack traces- Names of functions implemented in assembly are now obfuscated
GOPRIVATE=*
now works with packages likecrypto/tls
andembed
The README is also overhauled to be more helpful to first-time users.
Known bugs:
- obfuscating the standard library with
GOPRIVATE=*
is not well supported yet
0.1.0 - 2021-03-05
This is the first release of Garble. It supports Go 1.15.x and 1.16.x.
It ships all the major features that have worked for the past year, including:
- Obfuscation of all names, except methods and reflect targets
- Obfuscation of package import paths and position information
- Stripping of build and module information
- Support for Go modules
- Reproducible and cacheable builds
- Stripping of extra information via
-tiny
- Literal obfuscation via
-literals
Known bugs:
- obfuscating the standard library with
GOPRIVATE=*
is not well supported yet garble test
is temporarily disabled, as it is currently broken