5 releases
0.2.2 | May 10, 2022 |
---|---|
0.2.1 | May 10, 2022 |
0.2.0 | Nov 9, 2021 |
0.1.1 | Aug 1, 2019 |
0.1.0 | Jul 15, 2019 |
#42 in #calculate
353 downloads per month
Used in 5 crates
(4 directly)
15KB
115 lines
lipmaa-link
Calculate the bamboo lipmaa link for a given sequence number.
lib.rs
:
A function to calculate lipmaa sequence numbers.
From the bamboo spec: "The lipmaalinks are chosen such that for any pair of entries there is a path from the newer to the older one of a length logarithmic in their distance."
use lipmaa_link::lipmaa;
let result = lipmaa(13);
assert_eq!(result, 4);