func encoding/pem.Decode
7 uses
encoding/pem (current package)
pem.go#L89: func Decode(data []byte) (p *Block, rest []byte) {
crypto/tls
tls.go#L252: certDERBlock, certPEMBlock = pem.Decode(certPEMBlock)
tls.go#L276: keyDERBlock, keyPEMBlock = pem.Decode(keyPEMBlock)
crypto/x509
cert_pool.go#L210: block, pemCerts = pem.Decode(pemCerts)
x509.go#L1685: block, _ := pem.Decode(crlBytes)
github.com/gotd/td/internal/crypto
public_keys.go#L16: block, rest := pem.Decode(data)
github.com/gotd/td/telegram
cdn.go#L17: block, _ := pem.Decode([]byte(key.PublicKey))
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. |