bsv-sdk 0.2.81

Pure Rust implementation of the BSV Blockchain SDK
Documentation
1
2
3
4
5
6
7
8
9
10
//! BRC-77 Signed Messages and BRC-78 Encrypted Messages.
//!
//! This module provides standalone message signing, verification,
//! encryption, and decryption using only primitives (no network dependency).

pub mod encrypted_message;
pub mod signed_message;

pub use encrypted_message::{decrypt, encrypt};
pub use signed_message::{sign, verify};