mirror of
https://gitlab.com/mbugroup/lti-api.git
synced 2026-05-21 13:55:43 +00:00
21 lines
386 B
Go
21 lines
386 B
Go
// +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)
|
|
}
|