type encoding/pem.Block
12 uses
encoding/pem (current package)
pem.go#L29: type Block struct {
pem.go#L89: func Decode(data []byte) (p *Block, rest []byte) {
pem.go#L109: p = &Block{
pem.go#L240: func Encode(out io.Writer, b *Block) error {
pem.go#L310: func EncodeToMemory(b *Block) []byte {
crypto/tls
tls.go#L251: var certDERBlock *pem.Block
tls.go#L274: var keyDERBlock *pem.Block
crypto/x509
cert_pool.go#L209: var block *pem.Block
pem_decrypt.go#L104: func IsEncryptedPEMBlock(b *pem.Block) bool {
pem_decrypt.go#L124: func DecryptPEMBlock(b *pem.Block, password []byte) ([]byte, error) {
pem_decrypt.go#L195: func EncryptPEMBlock(rand io.Reader, blockType string, data, password []byte, alg PEMCipher) (*pem.Block, error) {
pem_decrypt.go#L224: return &pem.Block{
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. |