mirror of
https://gitlab.com/mbugroup/lti-api.git
synced 2026-05-24 07:15:43 +00:00
.
This commit is contained in:
+20
@@ -0,0 +1,20 @@
|
||||
// +build !amd64 !go1.17 go1.24
|
||||
|
||||
package rt
|
||||
|
||||
import (
|
||||
"encoding/base64"
|
||||
)
|
||||
|
||||
func DecodeBase64(raw []byte) ([]byte, error) {
|
||||
ret := make([]byte, base64.StdEncoding.DecodedLen(len(raw)))
|
||||
n, err := base64.StdEncoding.Decode(ret, raw)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
return ret[:n], nil
|
||||
}
|
||||
|
||||
func EncodeBase64(src []byte) string {
|
||||
return base64.StdEncoding.EncodeToString(src)
|
||||
}
|
||||
Reference in New Issue
Block a user