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
//! # Ristretto255 Scalar Multiplication
//!
//! This module provides functions for performing scalar multiplication operations
//! using the Ristretto255 group. Ristretto255 is a prime-order group built on top
//! of the Edwards25519 curve, which eliminates the cofactor issues present in both
//! Curve25519 and Ed25519.
//!
//! Ristretto255 is a technique for constructing prime order elliptic curve groups with
//! non-malleable encodings. It extends the Edwards25519 curve to provide a prime-order
//! group that's more suitable for many cryptographic protocols.
//!
//! ## Usage
//!
//! ```rust
//! use libsodium_rs as sodium;
//! use sodium::crypto_scalarmult::ristretto255;
//! use sodium::ensure_init;
//!
//! // Initialize libsodium
//! ensure_init().expect("Failed to initialize libsodium");
//!
//! // Generate a secret key (normally this would be random)
//! let secret_key = vec![0u8; ristretto255::SCALARBYTES];
//! let public_key = vec![0u8; ristretto255::BYTES]; // In a real app, this would be received from another party
//!
//! // Compute a shared secret using your secret key and another party's public key
//! match ristretto255::scalarmult(&secret_key, &public_key) {
//! Ok(shared_secret) => {
//! println!("Shared secret computed successfully");
//! // Use shared_secret for further operations
//! },
//! Err(err) => {
//! eprintln!("Failed to compute shared secret: {}", err);
//! // Handle the error appropriately
//! }
//! }
//! ```
//!
//! ## Security Considerations
//!
//! - Ristretto255 provides a prime-order group, which simplifies protocol design
//! - It eliminates the cofactor-related security issues present in Curve25519 and Ed25519
//! - For protocols that require a prime-order group, Ristretto255 is often the best choice
//! - Always use cryptographically secure random values for secret keys
//! - Results from scalar multiplication should not be used directly as cryptographic keys
//! without hashing
//! - Ristretto255 provides a canonical encoding, meaning each group element has exactly
//! one valid encoding
//! - The encoding is also non-malleable, preventing certain classes of attacks
//! - Unlike Curve25519 and Ed25519, Ristretto255 has no small-subgroup elements
use crate::;
pub const BYTES: usize = crypto_scalarmult_ristretto255_BYTES as usize;
pub const SCALARBYTES: usize = crypto_scalarmult_ristretto255_SCALARBYTES as usize;
/// Computes a shared secret using Ristretto255
///
/// This function multiplies an element represented by `public_key` by a scalar `secret_key`
/// (in the [0..L[ range) and puts the resulting element into the returned bytes.
///
/// The Ristretto255 group has prime order L = 2^252 + 27742317777372353535851937790883648493,
/// which means that all non-identity elements have the same order.
///
/// # Arguments
///
/// * `secret_key` - Your secret key (must be exactly `SCALARBYTES` bytes)
/// * `public_key` - The other party's public key (must be exactly `BYTES` bytes)
///
/// # Returns
///
/// * A shared secret of `BYTES` bytes
/// * Note: The result should not be used directly as a cryptographic key. Always hash
/// the output before using it as a key for encryption or other cryptographic operations.
/// * Security Note: The returned shared secret contains sensitive cryptographic material
/// and should be zeroized when no longer needed. Consider using the `zeroize` crate
/// or `sodium_memzero` from the `utils` module to securely clear this data.
///
/// # Errors
///
/// * `SodiumError::InvalidInput` - If the key lengths are incorrect
/// * `SodiumError::OperationError` - If the operation fails (e.g., if the result is the identity element
/// or if the public key is not a valid Ristretto255 point encoding)
///
/// # Example
///
/// ```rust
/// use libsodium_rs as sodium;
/// use sodium::crypto_scalarmult::ristretto255;
/// use sodium::ensure_init;
///
/// // Initialize libsodium
/// ensure_init().expect("Failed to initialize libsodium");
///
/// // Generate keys (in a real application, use random keys)
/// let secret_key = vec![0u8; ristretto255::SCALARBYTES];
/// let public_key = vec![0u8; ristretto255::BYTES]; // In a real app, this would be received from another party
///
/// // Compute shared secret
/// match ristretto255::scalarmult(&secret_key, &public_key) {
/// Ok(shared_secret) => {
/// println!("Shared secret computed successfully");
/// // Important: Hash the shared secret before using it as a key
/// // let key = crypto_hash::sha256::hash(&shared_secret);
/// },
/// Err(err) => {
/// eprintln!("Failed to compute shared secret: {}", err);
/// // Handle the error appropriately
/// }
/// }
/// ```
/// Multiplies the Ristretto255 base point by a scalar
///
/// This function multiplies the generator by a scalar `secret_key` (in the [0..L[ range)
/// and puts the resulting element into the returned bytes.
///
/// The Ristretto255 base point is the canonical generator of the Ristretto255 group.
///
/// # Arguments
///
/// * `secret_key` - Your secret key (must be exactly `SCALARBYTES` bytes)
///
/// # Returns
///
/// * A public key of `BYTES` bytes
/// * The resulting point will always be a valid Ristretto255 encoding
/// * Security Note: While the public key itself is not sensitive, the secret key used
/// to generate it should be properly zeroized when no longer needed. Consider using
/// the `zeroize` crate or `sodium_memzero` from the `utils` module for this purpose.
///
/// # Errors
///
/// * `SodiumError::InvalidInput` - If the key length is incorrect
/// * `SodiumError::OperationError` - If the operation fails (e.g., if the secret key is 0)
///
/// # Example
///
/// ```rust
/// use libsodium_rs as sodium;
/// use sodium::crypto_scalarmult::ristretto255;
/// use sodium::ensure_init;
///
/// // Initialize libsodium
/// ensure_init().expect("Failed to initialize libsodium");
///
/// // Generate a secret key (in a real application, use a random key)
/// let secret_key = vec![1u8; ristretto255::SCALARBYTES]; // Non-zero for this example
///
/// // Compute the corresponding public key
/// match ristretto255::scalarmult_base(&secret_key) {
/// Ok(public_key) => {
/// println!("Public key generated successfully");
/// // Use public_key for further operations
/// },
/// Err(err) => {
/// eprintln!("Failed to generate public key: {}", err);
/// // Handle the error appropriately
/// }
/// }
/// ```