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.
53 lines
1.1 KiB
Go
53 lines
1.1 KiB
Go
package literals
|
|
|
|
import (
|
|
"go/ast"
|
|
"go/token"
|
|
|
|
ah "mvdan.cc/garble/internal/asthelper"
|
|
)
|
|
|
|
type xor struct{}
|
|
|
|
// check that the obfuscator interface is implemented
|
|
var _ obfuscator = xor{}
|
|
|
|
func (x xor) obfuscate(data []byte) *ast.BlockStmt {
|
|
key := make([]byte, len(data))
|
|
genRandBytes(key)
|
|
|
|
for i, b := range key {
|
|
data[i] = data[i] ^ b
|
|
}
|
|
|
|
return &ast.BlockStmt{List: []ast.Stmt{
|
|
&ast.AssignStmt{
|
|
Lhs: []ast.Expr{ah.Ident("key")},
|
|
Tok: token.DEFINE,
|
|
Rhs: []ast.Expr{ah.DataToByteSlice(key)},
|
|
},
|
|
&ast.AssignStmt{
|
|
Lhs: []ast.Expr{ah.Ident("data")},
|
|
Tok: token.DEFINE,
|
|
Rhs: []ast.Expr{ah.DataToByteSlice(data)},
|
|
},
|
|
&ast.RangeStmt{
|
|
Key: ah.Ident("i"),
|
|
Value: ah.Ident("b"),
|
|
Tok: token.DEFINE,
|
|
X: ah.Ident("key"),
|
|
Body: &ast.BlockStmt{List: []ast.Stmt{
|
|
&ast.AssignStmt{
|
|
Lhs: []ast.Expr{ah.IndexExpr("data", ah.Ident("i"))},
|
|
Tok: token.ASSIGN,
|
|
Rhs: []ast.Expr{&ast.BinaryExpr{
|
|
X: ah.IndexExpr("data", ah.Ident("i")),
|
|
Op: token.XOR,
|
|
Y: ah.Ident("b"),
|
|
}},
|
|
},
|
|
}},
|
|
},
|
|
}}
|
|
}
|