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
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
//! # Ed25519 Scalar Multiplication
//!
//! This module provides functions for performing scalar multiplication operations
//! using the Ed25519 elliptic curve. Ed25519 is primarily used for digital signatures,
//! but these functions allow for using it in key exchange protocols as well.
//!
//! Note that these functions are distinct from the X25519 key exchange and should
//! only be used in specific protocols that explicitly require Ed25519 scalar multiplication
//! rather than X25519.
//!
//! ## Usage
//!
//! ```rust
//! use libsodium_rs as sodium;
//! use sodium::crypto_scalarmult::ed25519;
//! 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; ed25519::SCALARBYTES];
//! let public_key = vec![0u8; ed25519::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 ed25519::scalarmult(&secret_key, &public_key) {
//! Ok(shared_secret) => {
//! println!("Shared secret computed successfully");
//! },
//! Err(err) => {
//! println!("Failed to compute shared secret: {}", err);
//! }
//! }
//!
//! // Alternatively, use the noclamp variant for specialized applications
//! match ed25519::scalarmult_noclamp(&secret_key, &public_key) {
//! Ok(shared_secret_noclamp) => {
//! println!("Shared secret (noclamp) computed successfully");
//! },
//! Err(err) => {
//! println!("Failed to compute shared secret (noclamp): {}", err);
//! }
//! }
//! ```
//!
//! ## Security Considerations
//!
//! - Ed25519 is designed for signatures, so its use for key exchange requires careful consideration
//! - The curve has a cofactor of 8, which means some care must be taken in certain applications
//! - The "noclamp" variants skip the clamping of secret keys, which is generally less secure
//! but may be needed for certain specialized protocols
//! - For most key exchange applications, Curve25519 or Ristretto255 may be more appropriate
//! - Always use cryptographically secure random values for secret keys
//! - Results from scalar multiplication should not be used directly as cryptographic keys
//! without hashing
//! - The clamping operation ensures the scalar is a multiple of the cofactor (8), which
//! helps prevent small subgroup attacks
//! - Be aware that Ed25519 scalar multiplication can be vulnerable to timing attacks if not
//! implemented carefully (libsodium's implementation is constant-time)
use crate::;
pub const BYTES: usize = crypto_scalarmult_ed25519_BYTES as usize;
pub const SCALARBYTES: usize = crypto_scalarmult_ed25519_SCALARBYTES as usize;
/// Computes a shared secret using Ed25519
///
/// This function multiplies a point `public_key` by a scalar `secret_key` (with clamping)
/// and puts the Y coordinate of the resulting point into the returned bytes.
///
/// Note that the scalar is "clamped" (the 3 low bits are cleared to make it a multiple
/// of the cofactor, bit 254 is set and bit 255 is cleared to respect the original design).
///
/// The clamping operation is important for security as it helps prevent small subgroup attacks
/// by ensuring the scalar is a multiple of the cofactor (8).
///
/// # 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.
///
/// # Errors
///
/// * `SodiumError::InvalidInput` - If the key lengths are incorrect
/// * `SodiumError::OperationError` - If the operation fails (e.g., if `secret_key` is 0 or if `public_key` is not valid)
///
/// # Example
///
/// ```rust
/// use libsodium_rs as sodium;
/// use sodium::crypto_scalarmult::ed25519;
/// 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; ed25519::SCALARBYTES];
/// let public_key = vec![0u8; ed25519::BYTES]; // In a real app, this would be received from another party
///
/// // Compute shared secret
/// match ed25519::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
/// }
/// }
/// ```
/// Computes a shared secret using Ed25519 without clamping the secret key
///
/// This function multiplies a point `public_key` by a scalar `secret_key` (without clamping)
/// and puts the Y coordinate of the resulting point into the returned bytes.
///
/// WARNING: This function skips the clamping operation, which can be dangerous in most
/// applications. Only use this function if you fully understand the security implications
/// and your protocol specifically requires unclamped scalars.
///
/// The "noclamp" variant skips the clamping of the secret key, which is generally less secure
/// but may be needed for certain specialized protocols.
///
/// # 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.
///
/// # Errors
///
/// * `SodiumError::InvalidInput` - If the key lengths are incorrect
/// * `SodiumError::OperationError` - If the operation fails (e.g., if `secret_key` is 0 or if `public_key` is not valid)
///
/// # Example
///
/// ```rust
/// use libsodium_rs as sodium;
/// use sodium::crypto_scalarmult::ed25519;
/// 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; ed25519::SCALARBYTES];
/// let public_key = vec![0u8; ed25519::BYTES]; // In a real app, this would be received from another party
///
/// // Compute shared secret without clamping
/// match ed25519::scalarmult_noclamp(&secret_key, &public_key) {
/// Ok(shared_secret) => {
/// println!("Shared secret (noclamp) computed successfully");
/// // Use shared_secret for further operations
/// },
/// Err(err) => {
/// eprintln!("Failed to compute shared secret (noclamp): {}", err);
/// // Handle the error appropriately
/// }
/// }
/// ```
/// Multiplies the Ed25519 base point by a scalar with clamping
///
/// This function multiplies the Ed25519 base point by a scalar (with clamping)
/// and puts the Y coordinate of the resulting point into the returned bytes.
///
/// This operation can be used to derive a public key from a secret key, though
/// the encoding differs from the standard Ed25519 public key encoding used for signatures.
///
/// Note that the scalar is "clamped" (the 3 low bits are cleared to make it a multiple
/// of the cofactor, bit 254 is set and bit 255 is cleared to respect the original design).
///
/// # Arguments
///
/// * `secret_key` - Your secret key (must be exactly `SCALARBYTES` bytes)
///
/// # Returns
///
/// * A public key of `BYTES` bytes
///
/// # 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::ed25519;
/// 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; ed25519::SCALARBYTES]; // Non-zero for this example
///
/// // Compute the corresponding public key
/// match ed25519::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
/// }
/// }
/// ```
/// Multiplies the Ed25519 base point by a scalar without clamping
///
/// This function multiplies the Ed25519 base point by a scalar (without clamping)
/// and puts the Y coordinate of the resulting point into the returned bytes.
///
/// WARNING: This function skips the clamping operation, which can be dangerous in most
/// applications. Only use this function if you fully understand the security implications
/// and your protocol specifically requires unclamped scalars.
///
/// The "noclamp" variant skips the clamping of the secret key, which is generally less secure
/// but may be needed for certain specialized protocols.
///
/// # Arguments
///
/// * `secret_key` - Your secret key (must be exactly `SCALARBYTES` bytes)
///
/// # Returns
///
/// * A public key of `BYTES` bytes
///
/// # 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::ed25519;
/// 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; ed25519::SCALARBYTES]; // Non-zero for this example
///
/// // Compute the corresponding public key without clamping
/// match ed25519::scalarmult_base_noclamp(&secret_key) {
/// Ok(public_key) => {
/// println!("Public key generated successfully (noclamp)");
/// // Use public_key for further operations
/// },
/// Err(err) => {
/// eprintln!("Failed to generate public key (noclamp): {}", err);
/// // Handle the error appropriately
/// }
/// }
/// ```