Skip to content

Releases: go-asn1-ber/asn1-ber

v1.5.7

30 Apr 23:11
39796f6
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v1.5.6...v1.5.7

v1.5.6

22 Apr 15:47
5679dfd
Compare
Choose a tag to compare

What's Changed

  • BUGFIX: don't allocate more memory than what can be read from io.Reader by @inteon in #42

New Contributors

Full Changelog: v1.5.5...v1.5.6

v1.5.5

14 Sep 17:46
04301b4
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v1.5.4...v1.5.5

v1.5.4

06 Apr 00:55
71130c8
Compare
Choose a tag to compare

What's Changed

Full Changelog: v1.5.3...v1.5.4

Revert buffered reads

14 Dec 23:43
Compare
Choose a tag to compare

This was breaking downstream use.

Buffered Reads

11 Dec 04:46
e9d203d
Compare
Choose a tag to compare
Buffered reads (#31)

* add ReadPacket benchmark

* make readPacket use a bufio.Reader

This should give us some performance wins, since somewhere down the call
chain we read byte-by-byte, which has suboptimal performance when
reading involves a syscall.

Note that even in the recursive case, we are not buffering multiple
times, since the bufio.NewReader just returns the underlying reader if
it is already buffered.

Co-authored-by: David Bimmler <git@d4ve.email>

Fix minor arch bug

27 Jun 00:10
940d7ce
Compare
Choose a tag to compare
29 generalized time bug (#30)

* Fix #29 :: ParseGeneralizedTime should explicitly use int64

* Add missing comment doc

* Travis Updates

* Update travis test matrix

Features and Cleanup

11 Jun 20:10
4f900ee
Compare
Choose a tag to compare
lint fixes (#28)

* Fix linting issues

* more lint fixes

Add Helper for creating Boolean packet

03 Feb 17:20
effdc98
Compare
Choose a tag to compare
v1.4.1

Add RFC4511-compliant boolean type (#25)

Add WritePacket to use stream other than Stdout

21 Nov 21:23
Compare
Choose a tag to compare
Update Print Function to Accept io.Writer and not use os.StdOut by de…

…fault (#24)

* Updated print function

* Address PR comments