diff options
author | rsiddharth <s@ricketyspace.net> | 2020-08-29 13:30:47 -0400 |
---|---|---|
committer | rsiddharth <s@ricketyspace.net> | 2020-08-29 13:30:47 -0400 |
commit | 9db1426878ff5b81f66d6d73bf69555eb8e5b5d2 (patch) | |
tree | d57e6cff053740fe21b74bfdc36d5bcea4908144 /enc | |
parent | bd75e7268a8f5532f8348fcd82552ca8d38e7679 (diff) |
challenge: do challenge 2
* challenge/c02.go: Challenge 2 snafu.
* cryptopals.go: Add challenge 2.
* enc/hex.go (DecToHexChar): New function.
* enc/xor.go (FixedXOR): New function.
Diffstat (limited to 'enc')
-rw-r--r-- | enc/hex.go | 10 | ||||
-rw-r--r-- | enc/xor.go | 19 |
2 files changed, 29 insertions, 0 deletions
@@ -14,3 +14,13 @@ func HexCharToDec(c byte) uint16 { } return 0 } + +func DecToHexChar(i uint16) byte { + switch { + case 0 <= i && i <= 9: + return byte(48 + i) + case 10 <= i && i <= 15: + return byte(97 + (i - 10)) + } + return 0 +} 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 +} |