cloudproof_findex 6.0.2

Cosmian Findex Cloudproof library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use cosmian_findex::{ENTRY_LENGTH, LINK_LENGTH};

mod callbacks;

pub use callbacks::*;

#[derive(Debug)]
pub struct FfiEntryBackend(FfiCallbacks);

impl_custom_backend!(FfiEntryBackend, FfiCallbacks, ENTRY_LENGTH);

#[derive(Debug)]
pub struct FfiChainBackend(FfiCallbacks);

impl_custom_backend!(FfiChainBackend, FfiCallbacks, LINK_LENGTH);