summaryrefslogtreecommitdiffstats
path: root/lib/xor.go
blob: 0d1f3d72c70cb3d279051043ecf004893788c7e9 (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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
// 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
}

// Both 'data' and 'key' need to be plain ascii string.
func RepeatingXOR(data, key string) string {
	xs := ""
	if len(data) < 1 || len(key) < 1 {
		return xs
	}

	// data in bytes
	db := []byte(data)

	// key in bytes
	dk := []byte(key)

	lk := len(key)
	for i, ki := 0, 0; i < len(db); i++ {
		if ki == lk {
			ki = 0
		}

		// xor a byte
		eb := db[i] ^ dk[ki]

		// append to result
		xs += string(eb)

		ki += 1
	}
	return xs
}