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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
//! Wallet module for BSV SDK.
//!
//! This module provides the wallet interface, key derivation, and cryptographic
//! operations for interacting with BSV wallets. It implements the BRC-42 key
//! derivation standard and provides types compatible with the TypeScript and Go SDKs.
//!
//! # Overview
//!
//! The wallet module is organized into the following components:
//!
//! - **Types**: Core wallet type definitions including security levels, protocols,
//! counterparty identifiers, transaction types, and certificate structures.
//!
//! - **Key Derivation**: BRC-42 compliant key derivation using [`KeyDeriver`] and
//! the cached variant [`CachedKeyDeriver`] for optimized performance.
//!
//! - **ProtoWallet**: Foundational cryptographic operations using [`ProtoWallet`],
//! which provides signing, encryption, HMAC, and key linkage revelation.
//!
//! - **Validation**: Comprehensive input validation helpers in the [`validation`] module.
//!
//! # Key Derivation
//!
//! BRC-42 key derivation allows two parties to independently derive corresponding
//! key pairs. This enables secure, deterministic key generation for various protocols
//! without requiring a shared secret to be transmitted.
//!
//! ```rust
//! use bsv_rs::wallet::{KeyDeriver, Protocol, SecurityLevel, Counterparty};
//! use bsv_rs::primitives::PrivateKey;
//!
//! // Create derivers for Alice and Bob
//! let alice_deriver = KeyDeriver::new(Some(PrivateKey::random()));
//! let bob_deriver = KeyDeriver::new(Some(PrivateKey::random()));
//!
//! // Define a protocol
//! let protocol = Protocol::new(SecurityLevel::App, "payment system");
//! let key_id = "invoice-12345";
//!
//! // Bob creates a counterparty reference to Alice
//! let alice_counterparty = Counterparty::Other(alice_deriver.identity_key());
//!
//! // Bob derives his private key
//! let bob_priv = bob_deriver.derive_private_key(&protocol, key_id, &alice_counterparty).unwrap();
//!
//! // Bob's public key can be derived by either party
//! let bob_pub_self = bob_deriver.derive_public_key(&protocol, key_id, &alice_counterparty, true).unwrap();
//!
//! // They match
//! assert_eq!(bob_priv.public_key().to_compressed(), bob_pub_self.to_compressed());
//! ```
//!
//! # ProtoWallet
//!
//! [`ProtoWallet`] provides foundational cryptographic operations without blockchain interaction:
//!
//! ```rust
//! use bsv_rs::wallet::{ProtoWallet, Protocol, SecurityLevel, CreateSignatureArgs};
//! use bsv_rs::primitives::PrivateKey;
//!
//! // Create a ProtoWallet
//! let wallet = ProtoWallet::new(Some(PrivateKey::random()));
//!
//! // Sign data
//! let signature = wallet.create_signature(CreateSignatureArgs {
//! data: Some(b"Hello, BSV!".to_vec()),
//! hash_to_directly_sign: None,
//! protocol_id: Protocol::new(SecurityLevel::App, "signing app"),
//! key_id: "sig-1".to_string(),
//! counterparty: None,
//! }).unwrap();
//! ```
//!
//! # Caching
//!
//! For performance-critical applications, use [`CachedKeyDeriver`]:
//!
//! ```rust
//! use bsv_rs::wallet::{CachedKeyDeriver, CacheConfig, Protocol, SecurityLevel, Counterparty, KeyDeriverApi};
//! use bsv_rs::primitives::PrivateKey;
//!
//! // Create with custom cache size
//! let config = CacheConfig { max_size: 500 };
//! let deriver = CachedKeyDeriver::new(Some(PrivateKey::random()), Some(config));
//!
//! // Use like KeyDeriver - results are cached automatically
//! let protocol = Protocol::new(SecurityLevel::App, "my application");
//! let key1 = deriver.derive_public_key(&protocol, "key-1", &Counterparty::Self_, true).unwrap();
//! let key2 = deriver.derive_public_key(&protocol, "key-1", &Counterparty::Self_, true).unwrap(); // From cache
//! ```
//!
//! # Security Levels
//!
//! The [`SecurityLevel`] enum defines the level of user interaction required:
//!
//! - **Level 0 (Silent)**: No user interaction; keys derived silently
//! - **Level 1 (App)**: User approval required per application
//! - **Level 2 (Counterparty)**: User approval required per counterparty per application
//!
//! # Feature Flag
//!
//! This module requires the `wallet` feature flag:
//!
//! ```toml
//! [dependencies]
//! bsv-rs = { version = "0.3", features = ["wallet"] }
//! ```
// Re-export all public types
pub use ;
pub use ;
pub use ;
pub use ;
pub use ;
// Re-export client types (requires http feature)
pub use ;