Skip to content

Commit b4a7016

Browse files
committed
Remove unused functions
1 parent bec0799 commit b4a7016

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

utils.go

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -85,15 +85,6 @@ func base64urldecode(s string) ([]byte, error) {
8585
return enc.DecodeString(s)
8686
}
8787

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-
9788
// a32_to_base64 converts uint32 slice to base64 encoded byte slice.
9889
func a32_to_base64(a []uint32) (string, error) {
9990
d, err := a32_to_bytes(a)

0 commit comments

Comments
 (0)