
Security News
High Salaries No Longer Enough to Attract Top Cybersecurity Talent
A survey of 500 cybersecurity pros reveals high pay isn't enough—lack of growth and flexibility is driving attrition and risking organizational security.
github.com/dollarkillerx/obfuscation
混淆加密 随机匹配
go get github.com/dollarkillerx/obfuscation
func TestDecode(t *testing.T) {
key := GetRandKey() // 生成专用key
log.Println("key: ", key)
data := "你好亚"
s, e := Encode(key, []byte(data)) // 编码
if e != nil {
panic(e)
}
log.Println(s)
bytes, e := Decode(key, s) // 解码
if e != nil {
panic(e)
}
log.Println(string(bytes))
}
FAQs
Unknown package
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
A survey of 500 cybersecurity pros reveals high pay isn't enough—lack of growth and flexibility is driving attrition and risking organizational security.
Product
Socket, the leader in open source security, is now available on Google Cloud Marketplace for simplified procurement and enhanced protection against supply chain attacks.
Security News
Corepack will be phased out from future Node.js releases following a TSC vote.