1 unstable release

0.1.0 Feb 22, 2023

#763 in Cryptography

Download history 4350/week @ 2023-11-20 971/week @ 2023-11-27 469/week @ 2023-12-04 669/week @ 2023-12-11 448/week @ 2023-12-18 316/week @ 2023-12-25 793/week @ 2024-01-01 597/week @ 2024-01-08 706/week @ 2024-01-15 717/week @ 2024-01-22 480/week @ 2024-01-29 925/week @ 2024-02-05 827/week @ 2024-02-12 529/week @ 2024-02-19 820/week @ 2024-02-26 998/week @ 2024-03-04

3,220 downloads per month
Used in 3 crates (2 directly)

Apache-2.0

160KB
3.5K SLoC

Sphinx

A Sphinx packet implementation in Rust.

License Build Status codecov

Prerequisites

Testing

cargo test will run the unit and integration tests.

Code coverage reporting

If you want to find out how you're doing in terms of code coverage, install docker and then run the code coverage shell script at ./scripts/coverage_report.sh. Docker will download all the dependencies (get a coffee!), and output an HTML code coverage report at coverage/tarpaulin-report.html. Open the generated file in your browser to check coverage.

Unit + integration test coverage is currently well above 90%, please ensure that any pull requests maintain good test coverage.

Benchmarks

To run benchmarks, use:

cargo bench

Rust benchmarks run the operation multiple times to give a consistent output and report back in the number of nanoseconds (billionths of a second) per iteration. 1000000000 / result gives you the number of operations per second.

For later reference, on Dave's i7 Dell XPS-13 (2018) laptop (our test reference machine :)) output is as follows.

test tests::bench_new     ... bench:     386.348 us/iter
test tests::bench_process ... bench:     157.322 us/iter
  • 1000000 / 386.348 = ~2588 packet creations per second
  • 1000000 / 157.322 = ~6356 packet unwrappings per second

Dependencies

~4.5MB
~85K SLoC