Decode a base64 string in golang

huangapple go评论73阅读模式
英文:

Decode a base64 string in golang

问题

我有这个字符串:

MTk6MTQ4MjMxOTY0MDo1NDU=

我试图解码它:

cookie_value = "MTk6MTQ4MjMxOTY0MDo1NDU="
sDec, _ := base64.StdEncoding.DecodeString(cookie_value)
Info.Println(sDec)

但是它给我返回了:

INFO: 2016/12/21 12:27:20 ApiRender.go:158: [49 57 58 49 52 56 50 51 49 57 54 52 48 58 53 52 53]

如果你有任何关于如何正确解码它的想法,请告诉我。

谢谢和问候。

英文:

I have this string :

MTk6MTQ4MjMxOTY0MDo1NDU=

And i tried to decode it :

cookie_value = "MTk6MTQ4MjMxOTY0MDo1NDU="
sDec, _  := base64.StdEncoding.DecodeString(cookie_value)
Info.Println(sDec)

but it gives me that :

INFO: 2016/12/21 12:27:20 ApiRender.go:158: [49 57 58 49 52 56 50 51 49 57 54 52 48 58 53 52 53]

if you have any idea how to decode it properly

thanks and regards

答案1

得分: 5

这将非常困难:

Info.Println(string(sDec))
英文:

It will be very hard:

Info.Println(string(sDec))

huangapple
  • 本文由 发表于 2016年12月21日 19:34:47
  • 转载请务必保留本文链接:https://go.coder-hub.com/41261877.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定