Re: [go-nuts] how to protect source code

2022-03-18 Thread Holloway Kean Ho
>I want to encrypt my algorithm library, is there any good way in Go. My library is used in both Windows and Linux I'm assuming you're doing it for scalable distribution since Zhaoxun already answered local development environment. In this case it makes no sense as I can still use disassembler

Re: [go-nuts] how to protect source code

2022-03-17 Thread Zhaoxun Yan
I think it is best to run your code on an encrypted disk. So it cannot be stolen by taking away the hard-drive. Furthermore if the config and log files are in other folders, it is okay to shut down the encrypted drive I guess. In that case even it is running in memory, the hacker cannot get acces

Re: [go-nuts] how to protect source code

2022-03-17 Thread Ian Lance Taylor
On Thu, Mar 17, 2022 at 6:46 AM bbb tt wrote: > > I want to encrypt my algorithm library, is there any good way in Go. My > library is used in both Windows and Linux For a security issue like this it's essential to define the attack you want to defend against. The nature of Go is such that aga

[go-nuts] how to protect source code

2022-03-17 Thread bbb tt
I want to encrypt my algorithm library, is there any good way in Go. My library is used in both Windows and Linux -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this group and stop receiving emails from it, send an email t