Typo fix and readibility improvements

This commit is contained in:
Gowtham Gopalakrishnan
2018-11-17 19:59:15 +05:30
parent bb91b53e56
commit 3cdc462d3f
3 changed files with 6 additions and 6 deletions

View File

@@ -6,15 +6,15 @@ func hexEncodeToStringUpper(src []byte) string {
return string(dst) return string(dst)
} }
var hextableUpper = [16]byte{ var hexTableUppers = [16]byte{
'0', '1', '2', '3', '4', '5', '6', '7', '8', '9', '0', '1', '2', '3', '4', '5', '6', '7', '8', '9',
'A', 'B', 'C', 'D', 'E', 'F', 'A', 'B', 'C', 'D', 'E', 'F',
} }
func hexEncodeUpper(dst, src []byte) int { func hexEncodeUpper(dst, src []byte) int {
for i, v := range src { for i, v := range src {
dst[i*2] = hextableUpper[v>>4] dst[i*2] = hexTableUppers[v>>4]
dst[i*2+1] = hextableUpper[v&0x0f] dst[i*2+1] = hexTableUppers[v&0x0f]
} }
return len(src) * 2 return len(src) * 2

View File

@@ -14,8 +14,8 @@ func main() {
} }
var newBase multibase.Encoding var newBase multibase.Encoding
if baseParm := os.Args[1]; len(baseParm) != 0 { if baseParam := os.Args[1]; len(baseParam) != 0 {
newBase = multibase.Encoding(baseParm[0]) newBase = multibase.Encoding(baseParam[0])
} else { } else {
fmt.Fprintln(os.Stderr, "<new-base> is empty") fmt.Fprintln(os.Stderr, "<new-base> is empty")
os.Exit(1) os.Exit(1)

View File

@@ -38,7 +38,7 @@ const (
Base64urlPad = 'U' Base64urlPad = 'U'
) )
// Encodigs is a map of the supported encoding, unsupported encoding // Encodings is a map of the supported encoding, unsupported encoding
// specified in standard are left out // specified in standard are left out
var Encodings = map[string]Encoding{ var Encodings = map[string]Encoding{
"identity": 0x00, "identity": 0x00,