diff options
Diffstat (limited to 'enc/xor.go')
-rw-r--r-- | enc/xor.go | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/enc/xor.go b/enc/xor.go new file mode 100644 index 0000000..423c0a2 --- /dev/null +++ b/enc/xor.go @@ -0,0 +1,19 @@ +package enc + +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 +} |