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 bec0799 commit b4a7016Copy full SHA for b4a7016
utils.go
@@ -85,15 +85,6 @@ func base64urldecode(s string) ([]byte, error) {
85
return enc.DecodeString(s)
86
}
87
88
-// base64_to_a32 converts base64 encoded byte slice b to uint32 slice.
89
-func base64_to_a32(s string) ([]uint32, error) {
90
- d, err := base64urldecode(s)
91
- if err != nil {
92
- return nil, err
93
- }
94
- return bytes_to_a32(d)
95
-}
96
-
97
// a32_to_base64 converts uint32 slice to base64 encoded byte slice.
98
func a32_to_base64(a []uint32) (string, error) {
99
d, err := a32_to_bytes(a)
0 commit comments