#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

#38 in #calculate

Download history 39/week @ 2024-07-22 39/week @ 2024-07-29 28/week @ 2024-08-05 40/week @ 2024-08-12 25/week @ 2024-08-19 42/week @ 2024-08-26 17/week @ 2024-09-02 12/week @ 2024-09-09 8/week @ 2024-09-16 60/week @ 2024-09-23 19/week @ 2024-09-30 5/week @ 2024-10-07 32/week @ 2024-10-14 19/week @ 2024-10-21 16/week @ 2024-10-28 22/week @ 2024-11-04

89 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