• Russ Cox's avatar
    encoding/pem: change Encode, EncodeToMemory not to generate partial PEM blocks · c3fa046f
    Russ Cox authored
    Originally these routines could not fail except by
    returning errors from the underlying writer.
    
    Then we realized that header keys containing colons
    needed to be rejected, and we started returning an error
    from Encode. But that only happens after writing a
    partial PEM block to the underlying writer, which is
    unfortunate, but at least it was undocumented.
    
    CL 77790 then documented this unfortunate behavior.
    
    Instead of documenting unfortunate behavior, fix it.
    
    Change-Id: Ic7467a576c4cecd16a99138571a1269cc4f96204
    Reviewed-on: https://go-review.googlesource.com/82076
    Run-TryBot: Russ Cox <rsc@golang.org>
    TryBot-Result: Gobot Gobot <gobot@golang.org>
    Reviewed-by: 's avatarBrad Fitzpatrick <bradfitz@golang.org>
    c3fa046f
Name
Last commit
Last update
..
example_test.go Loading commit data...
pem.go Loading commit data...
pem_test.go Loading commit data...