func encoding/pem.Decode
11 uses
encoding/pem (current package)
pem.go#L86: func Decode(data []byte) (p *Block, rest []byte) {
pem.go#L202: p, rest := Decode(rest)
cloud.google.com/go/storage
storage.go#L1027: if block, _ := pem.Decode(key); block != nil {
crypto/tls
tls.go#L283: certDERBlock, certPEMBlock = pem.Decode(certPEMBlock)
tls.go#L307: keyDERBlock, keyPEMBlock = pem.Decode(keyPEMBlock)
crypto/x509
cert_pool.go#L209: block, pemCerts = pem.Decode(pemCerts)
x509.go#L2268: block, _ := pem.Decode(crlBytes)
github.com/go-git/go-git/v5/plumbing/transport/ssh
auth_method.go#L126: block, _ := pem.Decode(pemBytes)
golang.org/x/crypto/ssh
keys.go#L1121: block, _ := pem.Decode(pemBytes)
keys.go#L1151: block, _ := pem.Decode(pemBytes)
golang.org/x/oauth2/internal
oauth2.go#L21: block, _ := pem.Decode(key)
 |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin 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. |