updated dependencies and go
This commit is contained in:
+1
-1
@@ -25,7 +25,7 @@ func BytesXOR(a []byte, b []byte) ([]byte, error) {
|
||||
|
||||
r := make([]byte, len(a))
|
||||
|
||||
for i := 0; i < len(a); i++ {
|
||||
for i := range a {
|
||||
r[i] = a[i] ^ b[i]
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user