aboutsummaryrefslogtreecommitdiffstats
path: root/rlp
Commit message (Expand)AuthorAgeFilesLines
* rlp: improve nil pointer handling (#20064)Felix Lange2019-09-137-244/+416
* rlp: fixes for two corner cases and documentation (#19527)Felix Lange2019-05-145-57/+111
* rlp: added pooling of streams using sync (#19044)Marius van der Wijden2019-02-251-4/+17
* rlp: fix comment typo (#17640)chenyufeng2018-09-111-1/+1
* rlp: fix some golint warnings (#16659)kiel barry2018-05-082-37/+27
* rlp: fix string size check in readKind (#15625)Felix Lange2017-12-122-1/+2
* rlp: fix decoding long strings into RawValue typesPéter Szilágyi2017-08-242-11/+26
* rlp, trie, contracts, compression, consensus: improve comments (#14580)S. Matthew English2017-06-124-8/+8
* rlp: add support for "-" struct tagFelix Lange2017-03-074-7/+31
* all: fix go vet warningsFelix Lange2016-04-152-5/+3
* all: update license informationFelix Lange2016-04-151-0/+16
* rlp: add "tail" struct tagFelix Lange2016-02-196-26/+163
* rlp: move ListSize to raw.goFelix Lange2015-09-112-6/+6
* rlp: add RawValueFelix Lange2015-09-115-1/+39
* rlp: add Split functionsFelix Lange2015-09-113-1/+337
* rlp: fix encReader returning nil buffers to the poolFelix Lange2015-09-112-4/+32
* rlp: add support for boolean encoding/decodingPéter Szilágyi2015-08-134-0/+53
* all: fix license headers one more timeFelix Lange2015-07-247-7/+7
* all: update license headers to distiguish GPL/LGPLFelix Lange2015-07-237-28/+28
* rlp: fix check for canonical byte array sizeFelix Lange2015-07-182-9/+16
* rlp: reject trailing data when using DecodeBytesFelix Lange2015-07-181-1/+13
* all: update license informationFelix Lange2015-07-077-0/+112
* rlp: add ListSizeFelix Lange2015-06-301-0/+6
* rlp: remove FlatFelix Lange2015-06-302-51/+0
* rlp: pool encoder allocationsFelix Lange2015-06-301-9/+27
* rlp: fix list bounds check overflow (found by go-fuzz)Felix Lange2015-04-282-14/+40
* rlp: require declared number of input elements for array typesFelix Lange2015-04-172-40/+26
* rlp: stop accepting lists for byte slices and byte arraysFelix Lange2015-04-172-45/+10
* rlp: stricter rules for structs and pointersFelix Lange2015-04-174-52/+148
* rlp: reject non-minimal input stringsFelix Lange2015-04-172-15/+45
* rlp: stricter validation of canonical integer formatFelix Lange2015-04-172-42/+93
* rlp: fix handling of single byte zero when decoding into a pointerFelix Lange2015-04-172-6/+6
* rlp: fix integer overflow in list element size validationFelix Lange2015-04-172-2/+5
* rlp: check top-level value sizes against input limitFelix Lange2015-04-172-56/+171
* Reject integers w/ appended zero'sobscuren2015-04-052-0/+10
* rlp: encode nil array pointers as empty list or stringFelix Lange2015-03-252-8/+28
* rlp: add Stream.RawFelix Lange2015-03-213-12/+59
* rlp: fix nil pointer decodingFelix Lange2015-03-212-2/+27
* rlp: fix encoding of one element strings and byte slicesFelix Lange2015-03-192-7/+20
* rlp: add DecodeBytesFelix Lange2015-03-181-0/+7
* rlp: don't panic for nil *big.IntFelix Lange2015-03-182-1/+7
* wipobscuren2015-02-132-1/+27
|\
| * rlp: fix encoding of arrays with byte element typeFelix Lange2015-02-062-1/+27
* | rlp: add FlatFelix Lange2015-02-122-0/+58
|/
* rlp: allow encoding non-empty interface valuesFelix Lange2015-01-164-3/+23
* rlp: fix Decode benchmarksFelix Lange2015-01-151-8/+10
* rlp: add functions for encodingFelix Lange2015-01-156-17/+860
* Mergeobscuren2015-01-062-23/+72
* rlp: display decoder target type in more error messagesFelix Lange2014-12-102-27/+33
* rlp: remove dead codeFelix Lange2014-12-091-2/+0
* rlp: fix panic in decodeList on go 1.4+Felix Lange2014-12-091-48/+61
* rlp: remove support for signed integer typesFelix Lange2014-12-093-52/+29
* rlp: move decoder type switch to decode.goFelix Lange2014-12-092-32/+36
* rlp: include target type in decoder error messagesFelix Lange2014-11-252-28/+42
* rlp: add NewListStream (for p2p)Felix Lange2014-11-252-0/+27
* rlp: add Stream.Reset and accept any reader (for p2p)Felix Lange2014-11-252-7/+66
* rlp: fix pointer reuseFelix Lange2014-11-172-2/+10
* rlp: new package for streaming RLP decoderFelix Lange2014-11-174-0/+1243