diff options
author | rsiddharth <s@ricketyspace.net> | 2020-08-29 19:54:03 -0400 |
---|---|---|
committer | rsiddharth <s@ricketyspace.net> | 2020-08-29 19:54:03 -0400 |
commit | ed26b39e82cee901c785c13e3d1b669fbb502e14 (patch) | |
tree | 035335592cd1810b7ef30d0e0f4712c629ff2be8 /lib/xor.go | |
parent | bb5154bd593c186cbb225e44a2d3ead3c2c259d5 (diff) |
lib/xor.go: FixedXOR: add doc string.
Diffstat (limited to 'lib/xor.go')
-rw-r--r-- | lib/xor.go | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -3,6 +3,7 @@ package lib +// Both 'a' and 'b' must be hex encoded string. func FixedXOR(a, b string) string { cs := "" if len(a) != len(b) { |