MCPcopy 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
94func 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//加密
105func Bagua_en(s []byte) string {

Callers 1

encodeFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected