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::PythonCallbacks;

#[derive(Debug)]
pub struct PythonEntryBackend(PythonCallbacks);

impl_custom_backend!(PythonEntryBackend, PythonCallbacks, ENTRY_LENGTH);

#[derive(Debug)]
pub struct PythonChainBackend(PythonCallbacks);

impl_custom_backend!(PythonChainBackend, PythonCallbacks, LINK_LENGTH);