13 lines
242 B
Go
13 lines
242 B
Go
|
package mongodb
|
||
|
|
||
|
import "encoding/base64"
|
||
|
|
||
|
func base64DecodeToBytes(text string) []byte {
|
||
|
s, _ := base64.StdEncoding.DecodeString(text)
|
||
|
return s
|
||
|
}
|
||
|
|
||
|
func base64DecodeToString(text string) string {
|
||
|
return string(base64DecodeToBytes(text))
|
||
|
}
|