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
//! # lib-Q Saturnin - Post-Quantum Symmetric Algorithm Suite
//!
//! This crate provides implementations of the Saturnin post-quantum symmetric algorithm suite.
//! Saturnin is designed for IoT and constrained devices, providing authenticated encryption,
//! block cipher, hashing, and stream cipher modes with superior post-quantum security.
//!
//! ## Features
//!
//! - **Post-quantum security**: Designed to resist quantum attacks
//! - **Lightweight**: Optimized for constrained devices and IoT
//! - **Multiple modes**: AEAD, block cipher, hash, and stream cipher
//! - **Memory safe**: Built in Rust with zero-cost abstractions
//! - **No-std support**: Works in embedded environments
//!
//! ## Algorithm Modes
//!
//! - **AEAD**: Authenticated encryption with associated data
//! - **Block Cipher**: 256-bit block cipher
//! - **Hash Function**: Cryptographic hash function
//! - **Stream Cipher**: Stream cipher mode
//!
//! ## Usage Examples
//!
//! ### AEAD (Authenticated Encryption)
//! ```rust
//! #[cfg(feature = "aead")]
//! fn main() {
//! use lib_q_saturnin::{
//! Aead,
//! AeadKey,
//! Nonce,
//! SaturninAead,
//! };
//!
//! let aead = SaturninAead::new();
//! let key = AeadKey::new(vec![0u8; 32]);
//! let nonce = Nonce::new(vec![0u8; 16]);
//! let plaintext = b"Hello, World!";
//! let associated_data = b"metadata";
//!
//! let ciphertext = aead
//! .encrypt(&key, &nonce, plaintext, Some(associated_data))
//! .unwrap();
//!
//! let decrypted = aead
//! .decrypt(&key, &nonce, &ciphertext, Some(associated_data))
//! .unwrap();
//! assert_eq!(decrypted, plaintext);
//! }
//! #[cfg(not(feature = "aead"))]
//! fn main() {}
//! ```
//!
//! ### Hash Function
//! ```rust
//! #[cfg(feature = "hash")]
//! fn main() {
//! use lib_q_saturnin::SaturninHash;
//!
//! let hash = SaturninHash::new();
//! let data = b"Hello, World!";
//!
//! let hash_output = hash.hash(data).unwrap();
//! assert_eq!(hash_output.len(), 32); // 256-bit output
//! }
//! #[cfg(not(feature = "hash"))]
//! fn main() {}
//! ```
//!
//! ### Block Cipher
//! ```rust
//! #[cfg(feature = "block-cipher")]
//! fn main() {
//! use lib_q_saturnin::SaturninBlockCipher;
//!
//! let cipher = SaturninBlockCipher::new();
//! let key = vec![0u8; 32];
//! let block = vec![0u8; 32];
//!
//! let encrypted = cipher.encrypt_block(&key, &block).unwrap();
//! let decrypted = cipher.decrypt_block(&key, &encrypted).unwrap();
//! assert_eq!(decrypted, block);
//! }
//! #[cfg(not(feature = "block-cipher"))]
//! fn main() {}
//! ```
//!
//! ### Stream Cipher
//! ```rust
//! #[cfg(feature = "stream")]
//! fn main() {
//! use lib_q_saturnin::SaturninStream;
//!
//! let stream = SaturninStream::new();
//! let key = vec![0u8; 32];
//! let nonce = vec![0u8; 16];
//! let plaintext = b"Hello, World!";
//!
//! let ciphertext = stream.encrypt(&key, &nonce, plaintext).unwrap();
//! let decrypted = stream.decrypt(&key, &nonce, &ciphertext).unwrap();
//! assert_eq!(decrypted, plaintext);
//! }
//! #[cfg(not(feature = "stream"))]
//! fn main() {}
//! ```
//!
//! ## Performance Characteristics
//!
//! Saturnin is optimized for constrained devices and IoT applications:
//! - **Lightweight**: Minimal memory footprint
//! - **Fast**: Optimized for 32-bit and 64-bit processors
//! - **Efficient**: Bitsliced implementation for speed
//! - **Scalable**: Performance scales well with data size
//!
//! Typical performance on modern hardware:
//! - **AEAD**: ~100-500 MB/s depending on data size
//! - **Hash**: ~200-800 MB/s depending on data size
//! - **Block Cipher**: ~50-200 MB/s for single blocks
//! - **Stream Cipher**: ~100-400 MB/s depending on data size
//!
//! ## Security Properties
//!
//! Saturnin provides post-quantum security through:
//! - **Resistance to quantum attacks**: Designed to resist Shor's and Grover's algorithms
//! - **AES-like security**: 256-bit security level
//! - **Authenticated encryption**: Built-in integrity protection
//! - **Provable security**: Based on well-studied cryptographic primitives
//! - **Lightweight design**: Suitable for constrained environments
compile_error!;
extern crate alloc;
use ;
// Re-export core types for public use
pub use ;
// Core implementation
// Performance optimizations
// Algorithm implementations
// Re-export main implementations
pub use SaturninAead;
pub use SaturninShortAead;
pub use SaturninBlockCipher;
pub use SaturninHash;
pub use ;
/// Get available Saturnin algorithm modes
// Can't use vec![] due to feature-gated content
/// Create a Saturnin instance by mode name