0
0
Fork 0
pki/pem_marshal.go

16 lines
294 B
Go

package pkilib
import (
"io"
)
type (
marshalledPemBlock []byte
)
// This function writes the marshalled pem block to a writer and returns the
// number of written bytes and eventual errors.
func (b marshalledPemBlock) WriteTo(stream io.Writer) (int, error) {
return stream.Write(b)
}