Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/TideSec/GoBypassAV
/ byteTo2
Function
byteTo2
Encryption/Bagua_code/main.go:94–102 ·
view source on GitHub ↗
(byt int, dst []int)
Source
from the content-addressed store, hash-verified
92
}
93
94
func
byteTo2(byt int, dst []int) {
95
var
i = 7
96
for
byt != 0 {
97
dst[i] = byt % 2
98
byt = byt >> 1
99
i--
100
}
101
return
102
}
103
104
//加密
105
func
Bagua_en(s []byte) string {
Callers
1
encode
Function · 0.85
Calls
no outgoing calls
Tested by
no test coverage detected