You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
package utils
|
|
|
|
import "encoding/base64"
|
|
|
|
func Base64Encode(data string) string {
|
|
return base64.StdEncoding.EncodeToString([]byte(data))
|
|
}
|
|
|
|
func Base64Decode(data string) string {
|
|
decodedByte, _ := base64.StdEncoding.DecodeString(data)
|
|
return string(decodedByte)
|
|
}
|