encoding/base64.Encoding.DecodeString (method)
6 uses
encoding/base64 (current package)
base64.go#L399: func (enc *Encoding) DecodeString(s string) ([]byte, error) {
github.com/gotd/td/session
telethon.go#L35: data, err := base64.URLEncoding.DecodeString(hx[1:])
github.com/gotd/td/telegram/auth/qrlogin
token.go#L36: token, err := base64.URLEncoding.DecodeString(q.Get("token"))
mime
encodedword.go#L307: return base64.StdEncoding.DecodeString(text)
net/http
request.go#L964: c, err := base64.StdEncoding.DecodeString(auth[len(prefix):])
nhooyr.io/websocket
accept.go#L199: if v, err := base64.StdEncoding.DecodeString(websocketSecKey); err != nil || len(v) != 16 {
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |