byteutil.go 337 B

123456789101112131415161718192021222324
  1. package main
  2. import (
  3. "encoding/base64"
  4. )
  5. func decodeBase64(str string) (res []byte) {
  6. if str == "" {
  7. return
  8. }
  9. res, e := base64.StdEncoding.DecodeString(str)
  10. if e != nil {
  11. return
  12. }
  13. return
  14. }
  15. func encodeBase64(data []byte) (res string) {
  16. if data == nil {
  17. return
  18. }
  19. res = base64.StdEncoding.EncodeToString(data)
  20. return
  21. }