summaryrefslogtreecommitdiff
path: root/src/message.rs
AgeCommit message (Collapse)Author
2019-08-18minor changes to compile cleanly on Rust 1.37.0Stuart Stock
2019-02-10initial version of client response manglingStuart Stock
2019-01-19Update copyright for 2019Stuart Stock
2019-01-19Rust 2018 edition migrationStuart Stock
2018-10-21Changes to keep Clippy happyStuart Stock
2018-09-29Major refeactoring for better code structureStuart Stock
* Extract distinct types for online and long-term keys * Extract and create separate configuration trait and implementation(s) * Clean-ups, renames, tidying
2018-03-28limit message tag count to 1024Stuart Stock
2018-03-24Fix incorrect range check in multi_tag_message()Stuart Stock
9656fda introduced a buggy range check when ensuring that the value's end offset does not extend past the end of the payload.
2018-03-24Additional documentationStuart Stock
2018-03-24Check single tag message lengthStuart Stock
2018-03-24Restructure from_bytes; check length and alignment earlyStuart Stock
2018-03-24Check that value offset does not extend pass end of messageStuart Stock
2018-03-24Merge branch 'fuzz' of github.com:int08h/roughenough into fuzzStuart Stock
2018-03-24add docstring for from_bytes()Stuart Stock
2018-03-20Handle malformed message with truncated tag bytesStuart Stock
2018-03-20Validate offsets do not point beyond end of messageStuart Stock
2018-03-20Reject messages with zero tagsStuart Stock
2018-03-18Return Error on invalid offset instead of panic'ingStuart Stock
2018-03-17Apply default rustfmt style to the project.Stuart Stock
2018-03-01Add client implementationAaron Hill
2018-02-24Clippy suggested fixes/changesStuart Stock
2018-02-17Add benchmarks for message and response creationStuart Stock
As `[bench]` isn't in stable Rust yet, use [Criterion.rs]https://github.com/japaric/criterion.rs) as the benchmarking harness.
2017-07-06add license headersStuart Stock
2017-07-02first version of working serverStuart Stock
2017-06-22simplistic semi-working serverStuart Stock
2017-06-19begin work on serverStuart Stock
2017-06-17restructuring as a proper crateStuart Stock