summaryrefslogtreecommitdiffstats
path: root/lib/b64.go
diff options
context:
space:
mode:
Diffstat (limited to 'lib/b64.go')
-rw-r--r--lib/b64.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/b64.go b/lib/b64.go
index f8a8de8..67f3528 100644
--- a/lib/b64.go
+++ b/lib/b64.go
@@ -20,7 +20,7 @@ func HexToBase64(hex string) string {
}
func Base64ToBytes(enc string) []byte {
- enc = stripSpaceChars(enc)
+ enc = StripSpaceChars(enc)
l := len(enc)
bs := make([]byte, 3*(l/4))