encoding/base64.Encoding.DecodedLen (method)
5 uses
encoding/base64 (current package)
base64.go#L427: dbuf := make([]byte, enc.DecodedLen(len(s)))
base64.go#L650: func (enc *Encoding) DecodedLen(n int) int {
encoding/json
decode.go#L938: b := make([]byte, base64.StdEncoding.DecodedLen(len(s)))
encoding/pem
pem.go#L171: p.Bytes = make([]byte, base64.StdEncoding.DecodedLen(len(base64Data)))
mime
encodedword.go#L79: var maxBase64Len = base64.StdEncoding.DecodedLen(maxContentLen)
![]() |
The pages are generated with Golds v0.7.6. (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 @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |