derec-library 0.0.1-alpha.8

Rust SDK for the DeRec protocol, including native and WebAssembly bindings.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// SPDX-License-Identifier: Apache-2.0
// Copyright (c) 2026 DeRec Alliance. All rights reserved.

pub mod discovery;
pub mod pairing;
pub mod recovery;
pub mod sharing;
pub mod unpairing;
pub mod verification;

#[cfg(test)]
pub(crate) fn make_shared_key(byte: u8) -> [u8; 32] {
    [byte; 32]
}