Home | History | Annotate | Download | only in pem

Lines Matching refs:PEM

5 // Package pem implements the PEM data encoding, which originated in Privacy
6 // Enhanced Mail. The most common use of PEM encoding today is in TLS keys and
8 package pem
19 // A Block represents a PEM encoded structure.
74 // Decode will find the next PEM formatted block (certificate, private key
76 // no PEM data is found, p is nil and the whole of the input is returned in
167 // leading newline if the PEM block was empty.
175 // ultimately invalid PEM block. We need to start over from a new
255 // Encode writes the PEM encoding of b to out.
260 return errors.New("pem: cannot encode a header key that contains a colon")
321 // EncodeToMemory returns the PEM encoding of b.