#numbers #sequence #link #calculate #bamboo #length #lipmaa

no-std lipmaa-link

A function to calculate lipmaa sequence numbers

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

#39 in #calculate

Download history 10/week @ 2024-11-13 24/week @ 2024-11-20 35/week @ 2024-11-27 236/week @ 2024-12-04 111/week @ 2024-12-11 46/week @ 2024-12-18 14/week @ 2025-01-01 38/week @ 2025-01-08 41/week @ 2025-01-15 35/week @ 2025-01-22 21/week @ 2025-01-29 37/week @ 2025-02-05 58/week @ 2025-02-12 37/week @ 2025-02-19 62/week @ 2025-02-26

199 downloads per month
Used in 5 crates (4 directly)

AGPL-3.0

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);

No runtime deps