Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9ecc055 commit 4252dc8Copy full SHA for 4252dc8
training/crypto/cryptopals/set1/1/go/src/cryptopalslib/cryptopalslib.go
@@ -47,7 +47,7 @@ func HexEncodeByteArrayToString(plainBytes []byte) string {
47
48
/* This is how in a normal world, this function would be implemented...
49
* The problem is that bytes in byte array are not converted as individual
50
- * values but getted in groups of two (unicode bullshit) by string().
+ * values but getted in groups of two (unicode bullshit) by Decode().
51
func HexDecodeByteArrayToString(plainBytes []byte) (string, error) {
52
decLen := hex.DecodedLen(len(plainBytes))
53
decoded := make([]byte, decLen)
0 commit comments