ootle-rs 0.9.0

A Rust library for interacting with the Tari Ootle network.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//   Copyright 2026 The Tari Project
//   SPDX-License-Identifier: BSD-3-Clause

//! Cryptographic key providers for output mask generation and key derivation.
//!
//! The main type is [`PrivateKeyProvider`] (alias [`PrivateKeySigner`]), a local key
//! provider backed by a Ristretto secret key that can sign transactions, decrypt
//! stealth inputs, and derive various stealth secrets.

mod error;
mod local;
mod traits;

pub use error::*;
pub use local::*;
pub use traits::*;