How would one go about obfuscating strings in go?
I have a binary that contains an api key and api secret, running strings <binary>
allows me to see the api key/secret.
I consider this a security issue, since this would make database username/passwords, etc, readable too.
Please provide some insight to this, and/or a way to obfuscate go strings/binaries. I know that it can be reverse engineered, I'm simply looking for a way to harden it.