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
//! # Curve25519 Scalar Multiplication
//!
//! This module provides functions for performing scalar multiplication operations
//! using the Curve25519 elliptic curve. Curve25519 is designed for use in the X25519
//! key exchange scheme and provides strong security properties.
//!
//! X25519 is the Diffie-Hellman key exchange using Curve25519. It was introduced by
//! Daniel J. Bernstein and is widely used due to its security, performance, and
//! simplicity of implementation.
//!
//! ## Usage
//!
//! ```rust
//! use libsodium_rs as sodium;
//! use sodium::crypto_scalarmult::curve25519;
//! use sodium::ensure_init;
//!
//! // Initialize libsodium
//! ensure_init().expect("Failed to initialize libsodium");
//!
//! // Generate a secret key (normally this would be random)
//! let mut secret_key = vec![0u8; curve25519::SCALARBYTES];
//! secret_key[0] = 1; // Make it non-zero for a valid key
//!
//! // In a real app, this would be received from another party
//! let mut public_key = vec![0u8; curve25519::BYTES];
//! public_key[0] = 9; // Make it non-zero for a valid key
//!
//! // Compute a shared secret using your secret key and another party's public key
//! match curve25519::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
//!
//! - Curve25519 is designed for key exchange and provides excellent security and performance
//! - The curve has a cofactor of 8, which means some care must be taken in certain applications
//! - For most key exchange applications, Curve25519 is the recommended choice
//! - Always use cryptographically secure random values for secret keys
//! - Secret keys are automatically clamped: bits 0, 1, 2 of the first byte are cleared, bit 7 of the
//! last byte is cleared, and bit 6 of the last byte is set
//! - As X25519 encodes a field element that is always smaller than 2^255, the top bit is not used
//! - Results from scalar multiplication should not be used directly as cryptographic keys
//! without hashing
//! - The Curve25519 implementation is designed to avoid side-channel attacks
//! - If the protocol requires a prime-order group, consider using Ristretto255 instead
use crate::;
pub const BYTES: usize = crypto_scalarmult_curve25519_BYTES as usize;
pub const SCALARBYTES: usize = crypto_scalarmult_curve25519_SCALARBYTES as usize;
/// Computes a shared secret using Curve25519
///
/// This function multiplies a point `public_key` by a scalar `secret_key`
/// and puts the resulting element into the returned bytes.
///
/// The secret key is automatically clamped before use, meaning certain bits
/// are set or cleared to ensure it meets the requirements for Curve25519.
///
/// # 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 the result is all zeros,
/// which can happen if the public key is invalid or if the secret key is 0 after clamping)
///
/// # Example
///
/// ```rust
/// use libsodium_rs as sodium;
/// use sodium::crypto_scalarmult::curve25519;
/// 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; curve25519::SCALARBYTES];
/// let public_key = vec![0u8; curve25519::BYTES]; // In a real app, this would be received from another party
///
/// // Compute shared secret
/// match curve25519::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 Curve25519 base point by a scalar
///
/// This function multiplies the Curve25519 base point by a scalar `secret_key`
/// and puts the resulting element into the returned bytes.
///
/// The secret key is automatically clamped before use, meaning certain bits
/// are set or cleared to ensure it meets the requirements for Curve25519.
///
/// This operation is used to generate a public key from a secret key.
///
/// # 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
///
/// # Example
///
/// ```rust
/// use libsodium_rs as sodium;
/// use sodium::crypto_scalarmult::curve25519;
/// 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; curve25519::SCALARBYTES]; // Non-zero for this example
///
/// // Compute the corresponding public key
/// match curve25519::scalarmult_base(&secret_key) {
/// Ok(public_key) => {
/// println!("Public key generated successfully");
/// },
/// Err(err) => {
/// eprintln!("Failed to generate public key: {}", err);
/// // Handle the error appropriately
/// }
/// }
/// ```