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
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
//
// Security-focused lints
//
// Deny unsafe code to ensure memory safety
// Deny missing documentation for public API
// Catch potential security issues from unused results
// Ensure proper error handling
// Memory safety warnings
// Note: clippy::arithmetic_side_effects is available but too strict for cryptographic code
// where bit shifts and arithmetic are fundamental operations. Consider enabling it and
// using #[allow] annotations on specific crypto functions if needed.
// Ensure proper error propagation
// Allow these lints in test code where they are acceptable
// Security: avoid potential data leaks
// Code quality lints that help prevent bugs
// Ensure we use constant-time comparisons where appropriate
//! ## Features
//!
//! - **Order-Revealing**: Relative order of plaintexts can be determined at query time
//! - **Deterministic**: The same plaintext always produces the same ciphertext for a given key
//! - **Constant-Time**: Operations use constant-time algorithms to prevent timing attacks
//! - **Multiple Types**: Support for integers (`u16`, `u32`, `u64`, `u128`), strings, and byte slices
//!
//! ## Basic Usage
//!
//! ```
//! use cllw_ore::Key;
//! use std::cmp::Ordering;
//!
//! // Create an encryption key
//! let key = Key::from([0u8; 32]);
//!
//! // Encrypt integers
//! let ct1 = key.encrypt(10u32).unwrap();
//! let ct2 = key.encrypt(20u32).unwrap();
//!
//! // Compare encrypted values
//! assert_eq!(ct1.cmp(&ct2), Ordering::Less);
//!
//! // Decrypt values
//! assert_eq!(key.decrypt(ct1).unwrap(), 10u32);
//! assert_eq!(key.decrypt(ct2).unwrap(), 20u32);
//! ```
//!
//! ## Supported Types
//!
//! ### Unsigned Integers
//!
//! ```
//! use cllw_ore::Key;
//!
//! let key = Key::from([0u8; 32]);
//!
//! // u16, u32, u64, u128 are all supported
//! let ct16 = key.encrypt(100u16).unwrap();
//! let ct32 = key.encrypt(1000u32).unwrap();
//! let ct64 = key.encrypt(10000u64).unwrap();
//! let ct128 = key.encrypt(100000u128).unwrap();
//!
//! assert_eq!(key.decrypt(ct32).unwrap(), 1000u32);
//! ```
//!
//! ### Strings
//!
//! ```
//! use cllw_ore::Key;
//!
//! let key = Key::from([0u8; 32]);
//!
//! let ct1 = key.encrypt("alice").unwrap();
//! let ct2 = key.encrypt("bob").unwrap();
//!
//! assert!(ct1 < ct2);
//! assert_eq!(key.decrypt(ct1).unwrap(), "alice");
//! ```
//!
//! ### Byte Slices
//!
//! ```
//! use cllw_ore::Key;
//!
//! let key = Key::from([0u8; 32]);
//! let data: &[u8] = &[0xFF, 0x00, 0xAB];
//!
//! let ciphertext = key.encrypt(data).unwrap();
//! let decrypted = ciphertext.decrypt_to_bytes(&key, None).unwrap();
//!
//! assert_eq!(data, decrypted.as_slice());
//! ```
//!
//! ## Using Salts for Domain Separation
//!
//! ```
//! use cllw_ore::{Key, CllwOreEncrypt, CllwOreDecrypt};
//!
//! let key = Key::from([0u8; 32]);
//! let salt = b"my-domain";
//!
//! // Encrypt with a salt
//! let ct = 42u32.encrypt_with_salt(&key, Some(salt)).unwrap();
//!
//! // Must use the same salt to decrypt
//! let pt = ct.decrypt_with_salt(&key, Some(salt)).unwrap();
//! assert_eq!(pt, 42u32);
//! ```
use Error;
pub use ;
pub use orderize_string;
pub use ;
pub use ;
/// An error occurred during encryption or decryption.
///
/// This error is intentionally vague to prevent oracle attacks where
/// specific error messages could leak information about the plaintext.
;
/// A 256-bit encryption key for CLWW Order-Revealing Encryption.
///
/// The key is used to encrypt and decrypt values while preserving their ordering.
/// All encryption operations are deterministic for a given key.
///
/// # Examples
///
/// ```
/// use cllw_ore::Key;
///
/// // Create a key from a 32-byte array
/// let key = Key::from([0u8; 32]);
///
/// // Encrypt an integer
/// let plaintext: u32 = 42;
/// let ciphertext = key.encrypt(plaintext).unwrap();
///
/// // Decrypt back to the original value
/// let decrypted = key.decrypt(ciphertext).unwrap();
/// assert_eq!(plaintext, decrypted);
/// ```
;
/// Trait for types that can be encrypted using CLWW Order-Revealing Encryption.
///
/// This trait is implemented for unsigned integer types (`u16`, `u32`, `u64`, `u128`),
/// strings (`&str`), and byte slices (`&[u8]`).
///
/// # Examples
///
/// ```
/// use cllw_ore::{Key, CllwOreEncrypt};
///
/// let key = Key::from([0u8; 32]);
///
/// // Using the trait directly
/// let ciphertext = 42u32.encrypt(&key).unwrap();
///
/// // Using the Key::encrypt method (more ergonomic)
/// let ciphertext2 = key.encrypt(42u32).unwrap();
/// assert_eq!(ciphertext, ciphertext2);
/// ```
/// Trait for types that can be decrypted from CLWW Order-Revealing Encryption.
///
/// This trait is implemented for the ciphertext types `OreCllw8V1<N>` and `OreCllw8VariableV1`.
///
/// # Examples
///
/// ```
/// use cllw_ore::{Key, CllwOreDecrypt};
///
/// let key = Key::from([0u8; 32]);
/// let ciphertext = key.encrypt(100u32).unwrap();
///
/// // Using the trait directly
/// let plaintext = ciphertext.decrypt(&key).unwrap();
/// assert_eq!(plaintext, 100u32);
/// ```
/// Trait for types that can be encrypted using CLWW Order-Preserving Encryption.
///
/// This is the OPE variant from Section 3.2 of the CLWW paper, reworked with a
/// right-to-left carry pass on top of the CLWW keystream so that ciphertexts can be
/// compared with standard lexicographic byte ordering instead of the ORE comparison
/// function.
///
/// **Correctness**: comparison is **exact** — lex compare always agrees with
/// plaintext order. See [`Key::encrypt_ope`] for the full characterisation.
///
/// # Examples
///
/// ```
/// use cllw_ore::{Key, CllwOpeEncrypt};
///
/// let key = Key::from([0u8; 32]);
///
/// let ct = 42u32.encrypt_ope(&key).unwrap();
/// ```