aboutsummaryrefslogtreecommitdiff
path: root/src/pkg/encoding
AgeCommit message (Expand)Author
2014-09-08build: move package sources from src/pkg to srcRuss Cox
2014-08-25encoding/json: make ,string work when encoding pointer fieldsBrad Fitzpatrick
2014-08-08encoding/gob: fix data races in benchmarksDmitriy Vyukov
2014-08-08encoding/json: document coercion of invalid UTF-8 charactersAndrew Gerrand
2014-08-07encoding/gob: make benchmarks parallelDmitriy Vyukov
2014-08-06encoding/xml: add InputOffset method to DecoderRuss Cox
2014-08-03encoding/gob: save a call to userTypeRob Pike
2014-07-28encoding/asn1: only omit optional elements matching default value.Adam Langley
2014-07-18encoding/gob: remove unnecessary receiversDmitriy Vyukov
2014-07-01encoding/gob: fewer decAlloc callsRuss Cox
2014-06-30encoding/gob: simplify allocation in decode.Rob Pike
2014-06-30encoding/gob: remove unsafe, use reflection.Rob Pike
2014-06-19encoding/base64, encoding/base32: speed up EncodeRui Ueyama
2014-06-18encoding/base64, encoding/base32: make Encode fasterRui Ueyama
2014-06-12encoding/json: remove unused field from Encoder structBrad Fitzpatrick
2014-06-11encoding/ascii85: remove unused fieldRui Ueyama
2014-06-11encoding/base64, encoding/base32: make DecodeString fasterRui Ueyama
2014-05-16encoding/xml: fix format in test messageRob Pike
2014-05-12encoding/json: document what unmarshal of `null` into non-reference type doesRuss Cox
2014-05-12encoding/xml: fix to allow xml declaration with EncodeTokenJason Del Ponte
2014-05-09encoding/binary: document that Read requires exported struct fieldsIan Lance Taylor
2014-05-08encoding/json: add example for Indent, clarify the docs.Stephen McQuay
2014-04-26encoding/ascii85: handle non-data bytes correctlyRui Ueyama
2014-04-26src: fix issues found by go vet stdRobert Hencke
2014-04-26 encoding/gob: handle interface types in isZero() by returning true for ...Jonathan Allie
2014-04-16encoding/json: document Encoder will terminate each JSON value with '\n'Shenghou Ma
2014-04-16encoding/xml: document NewDecoder bufferingBrad Fitzpatrick
2014-04-16all: fix typosRui Ueyama
2014-04-16encoding/base64: don't lose a byte of output when encountering trailing garbageBrad Fitzpatrick
2014-04-08encoding/xml: unmarshal into interfacesJosh Bleecher Snyder
2014-04-08encoding/xml: Makes XML Marshaler take into account XMLName field from anonym...Alexander Zhavnerchik
2014-03-21encoding/asn1: use GeneralizedTime for times outside the range of UTCTime.Adam Langley
2014-03-20base64: fix bug that decoder fails to detect corruptionRui Ueyama
2014-03-20base32: remove unnecessary "if" conditionRui Ueyama
2014-03-18base64: refactor encoder.WriteRui Ueyama
2014-03-17encoding/hex: add error check for write error.Rui Ueyama
2014-03-07encoding/gob: document that Decode returns EOF at EOFRob Pike
2014-03-06encoding/gob: improve interface assignment error messageKelsey Hightower
2014-03-05encoding/xml: add test for EncodeTokenShawn Smith
2014-02-13crypto/x509: Add certificate signature request (CSR) support.Kyle Isom
2014-02-12encoding/json: fix test failureDmitriy Vyukov
2014-02-05encoding/json: mention escaping of '&'Shenghou Ma
2014-01-30encoding/gob: fix two crashes on corrupted data.Rémy Oudompheng
2014-01-28encoding/asn1: support set tag when unmarshaling.Adam Langley
2014-01-27all: use {bytes,strings}.NewReader instead of bytes.BuffersBrad Fitzpatrick
2014-01-07encoding/csv: test that carriage return is handled in WriteShawn Smith
2014-01-03encoding/json: Fix missing error when trying to unmarshal null string into in...Emil Hessman
2014-01-02encoding/hex: add Decode error test caseShawn Smith
2014-01-02encoding/json: add tests for InvalidUnmarshalErrorDave Cheney
2014-01-01encoding/json: improve omitempty test coverageShawn Smith