1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
//! AlgoChat - Encrypted messaging on Algorand
//!
//! Rust implementation of the AlgoChat protocol using X25519 + ChaCha20-Poly1305.
//!
//! ## Overview
//!
//! AlgoChat provides end-to-end encrypted messaging on the Algorand blockchain.
//! Messages are stored as encrypted transaction notes, providing immutable,
//! decentralized messaging with cryptographic proof of authenticity.
//!
//! ## Modules
//!
//! - [`algochat`] - Main client interface
//! - [`crypto`] - Message encryption and decryption
//! - [`envelope`] - Wire format for encrypted messages
//! - [`keys`] - Key derivation from Algorand accounts
//! - [`signature`] - Ed25519 signature verification for key ownership
//! - [`models`] - Data types for messages, conversations, etc.
//! - [`storage`] - Message cache, public key cache, and key storage
//! - [`queue`] - Message queue for offline support
//! - [`blockchain`] - Algorand integration interfaces
//! - [`types`] - Protocol constants and error types
//! - [`psk_types`] - PSK protocol v1.1 constants and types
//! - [`psk_ratchet`] - Two-level PSK ratchet key derivation
//! - [`psk_envelope`] - PSK envelope encoding/decoding
//! - [`psk_state`] - PSK counter state management
//! - [`psk_exchange`] - PSK exchange URI format
//! - [`psk_crypto`] - PSK encryption and decryption
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;