Skip to content

Commit

Permalink
fix: fix base32 order bug
Browse files Browse the repository at this point in the history
  • Loading branch information
thinkgos committed Dec 3, 2024
1 parent 27c1653 commit dada800
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion base32n/base32n.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"unsafe"
)

var StdEncoding = NewEncoding("abcdefghijklmnopqrstuvwxyz234567")
var StdEncoding = NewEncoding("234567abcdefghijklmnopqrstuvwxyz")

const (
decodeMapInitialize = "" +
Expand Down

0 comments on commit dada800

Please sign in to comment.