blob: ae2bd129e524d7ebd61437a455d5e1554f8e9fbd (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
// Copyright © 2020 rsiddharth <s@ricketyspace.net>
// SPDX-License-Identifier: ISC
package lib
// Both 'a' and 'b' must be hex encoded string.
func FixedXOR(a, b string) string {
cs := ""
if len(a) != len(b) {
return cs
}
ab := []byte(a)
bb := []byte(b)
for i := 0; i < len(ab); i++ {
p := HexCharToDec(ab[i])
q := HexCharToDec(bb[i])
r := DecToHexChar(p ^ q)
cs += string(r)
}
return cs
}
|