lib-q-ml-dsa 0.0.2

NIST FIPS 204 Module-Lattice Digital Signature Algorithm (ML-DSA) implementation
Documentation
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
pub use ml_dsa_65::{
    MLDSA65KeyPair,
    MLDSA65Signature,
    MLDSA65SigningKey,
    MLDSA65VerificationKey,
};

use crate::constants::*;
use crate::types::*;
use crate::{
    SigningError,
    VerificationError,
};

// Instantiate the different functions.
macro_rules! instantiate {
    ($modp:ident, $doc:expr) => {
        #[doc = $doc]
        pub mod $modp {
            use super::*;

            /// Generate an ML-DSA-65 Key Pair
            pub fn generate_key_pair(
                randomness: [u8; KEY_GENERATION_RANDOMNESS_SIZE],
            ) -> MLDSA65KeyPair {
                let mut signing_key = [0u8; ml_dsa_65::SIGNING_KEY_SIZE];
                let mut verification_key = [0u8; ml_dsa_65::VERIFICATION_KEY_SIZE];
                crate::ml_dsa_generic::ml_dsa_65::generate_key_pair::<
                    crate::simd::portable::PortableSIMDUnit,
                    crate::samplex4::portable::PortableSampler,
                    crate::hash_functions::portable::Shake128X4,
                    crate::hash_functions::portable::Shake256,
                    crate::hash_functions::portable::Shake256Xof,
                    crate::hash_functions::portable::Shake256X4,
                >(randomness, &mut signing_key, &mut verification_key);

                MLDSA65KeyPair {
                    signing_key: MLDSASigningKey::new(signing_key),
                    verification_key: MLDSAVerificationKey::new(verification_key),
                }
            }

            /// Generate an ML-DSA-65 Key Pair
            pub fn generate_key_pair_mut(
                randomness: [u8; KEY_GENERATION_RANDOMNESS_SIZE],
                signing_key: &mut [u8; ml_dsa_65::SIGNING_KEY_SIZE],
                verification_key: &mut [u8; ml_dsa_65::VERIFICATION_KEY_SIZE],
            ) {
                crate::ml_dsa_generic::ml_dsa_65::generate_key_pair::<
                    crate::simd::portable::PortableSIMDUnit,
                    crate::samplex4::portable::PortableSampler,
                    crate::hash_functions::portable::Shake128X4,
                    crate::hash_functions::portable::Shake256,
                    crate::hash_functions::portable::Shake256Xof,
                    crate::hash_functions::portable::Shake256X4,
                >(randomness, signing_key, verification_key);
            }

            /// Generate an ML-DSA-65 Signature
            ///
            /// The parameter `context` is used for domain separation
            /// and is a byte string of length at most 255 bytes. It
            /// may also be empty.
            pub fn sign(
                signing_key: &MLDSA65SigningKey,
                message: &[u8],
                context: &[u8],
                randomness: [u8; SIGNING_RANDOMNESS_SIZE],
            ) -> Result<MLDSA65Signature, SigningError> {
                crate::ml_dsa_generic::ml_dsa_65::sign::<
                    crate::simd::portable::PortableSIMDUnit,
                    crate::samplex4::portable::PortableSampler,
                    crate::hash_functions::portable::Shake128X4,
                    crate::hash_functions::portable::Shake256,
                    crate::hash_functions::portable::Shake256Xof,
                    crate::hash_functions::portable::Shake256X4,
                >(signing_key.as_ref(), message, context, randomness)
            }

            /// Generate an ML-DSA-65 Signature
            ///
            /// The parameter `context` is used for domain separation
            /// and is a byte string of length at most 255 bytes. It
            /// may also be empty.
            pub fn sign_mut(
                signing_key: &[u8; ml_dsa_65::SIGNING_KEY_SIZE],
                message: &[u8],
                context: &[u8],
                randomness: [u8; SIGNING_RANDOMNESS_SIZE],
                signature: &mut [u8; ml_dsa_65::SIGNATURE_SIZE],
            ) -> Result<(), SigningError> {
                crate::ml_dsa_generic::ml_dsa_65::sign_mut::<
                    crate::simd::portable::PortableSIMDUnit,
                    crate::samplex4::portable::PortableSampler,
                    crate::hash_functions::portable::Shake128X4,
                    crate::hash_functions::portable::Shake256,
                    crate::hash_functions::portable::Shake256Xof,
                    crate::hash_functions::portable::Shake256X4,
                >(signing_key, message, context, randomness, signature)
            }

            /// Generate an ML-DSA-65 Signature (Algorithm 7 in FIPS204)
            ///
            /// The message is assumed to be domain-separated.
            #[cfg(feature = "acvp")]
            pub fn sign_internal(
                signing_key: &MLDSA65SigningKey,
                message: &[u8],
                randomness: [u8; SIGNING_RANDOMNESS_SIZE],
            ) -> Result<MLDSA65Signature, SigningError> {
                let mut signature = MLDSA65Signature::zero();
                crate::ml_dsa_generic::ml_dsa_65::sign_internal::<
                    crate::simd::portable::PortableSIMDUnit,
                    crate::samplex4::portable::PortableSampler,
                    crate::hash_functions::portable::Shake128X4,
                    crate::hash_functions::portable::Shake256,
                    crate::hash_functions::portable::Shake256Xof,
                    crate::hash_functions::portable::Shake256X4,
                >(
                    signing_key.as_ref(),
                    message,
                    None,
                    randomness,
                    signature.as_ref_mut(),
                )?;
                Ok(signature)
            }

            /// Verify an ML-DSA-65 Signature (Algorithm 8 in FIPS204)
            ///
            /// The message is assumed to be domain-separated.
            #[cfg(feature = "acvp")]
            pub fn verify_internal(
                verification_key: &MLDSA65VerificationKey,
                message: &[u8],
                signature: &MLDSA65Signature,
            ) -> Result<(), VerificationError> {
                crate::ml_dsa_generic::ml_dsa_65::verify_internal::<
                    crate::simd::portable::PortableSIMDUnit,
                    crate::samplex4::portable::PortableSampler,
                    crate::hash_functions::portable::Shake128X4,
                    crate::hash_functions::portable::Shake256,
                    crate::hash_functions::portable::Shake256Xof,
                >(verification_key.as_ref(), message, None, signature.as_ref())
            }

            /// Generate a HashML-DSA-65 Signature, with a SHAKE128 pre-hashing
            ///
            /// The parameter `context` is used for domain separation
            /// and is a byte string of length at most 255 bytes. It
            /// may also be empty.
            pub fn sign_pre_hashed_shake128(
                signing_key: &MLDSA65SigningKey,
                message: &[u8],
                context: &[u8],
                randomness: [u8; SIGNING_RANDOMNESS_SIZE],
            ) -> Result<MLDSA65Signature, SigningError> {
                let mut pre_hash_buffer = [0u8; 256];
                crate::ml_dsa_generic::ml_dsa_65::sign_pre_hashed::<
                    crate::simd::portable::PortableSIMDUnit,
                    crate::samplex4::portable::PortableSampler,
                    crate::hash_functions::portable::Shake128,
                    crate::hash_functions::portable::Shake128X4,
                    crate::hash_functions::portable::Shake256,
                    crate::hash_functions::portable::Shake256Xof,
                    crate::hash_functions::portable::Shake256X4,
                    crate::pre_hash::SHAKE128_PH,
                >(
                    signing_key.as_ref(),
                    message,
                    context,
                    &mut pre_hash_buffer,
                    randomness,
                )
            }

            /// Verify an ML-DSA-65 Signature
            ///
            /// The parameter `context` is used for domain separation
            /// and is a byte string of length at most 255 bytes. It
            /// may also be empty.
            pub fn verify(
                verification_key: &MLDSA65VerificationKey,
                message: &[u8],
                context: &[u8],
                signature: &MLDSA65Signature,
            ) -> Result<(), VerificationError> {
                crate::ml_dsa_generic::ml_dsa_65::verify::<
                    crate::simd::portable::PortableSIMDUnit,
                    crate::samplex4::portable::PortableSampler,
                    crate::hash_functions::portable::Shake128X4,
                    crate::hash_functions::portable::Shake256,
                    crate::hash_functions::portable::Shake256Xof,
                >(
                    verification_key.as_ref(),
                    message,
                    context,
                    signature.as_ref(),
                )
            }

            /// Verify a HashML-DSA-65 Signature, with a SHAKE128 pre-hashing
            ///
            /// The parameter `context` is used for domain separation
            /// and is a byte string of length at most 255 bytes. It
            /// may also be empty.
            pub fn verify_pre_hashed_shake128(
                verification_key: &MLDSA65VerificationKey,
                message: &[u8],
                context: &[u8],
                signature: &MLDSA65Signature,
            ) -> Result<(), VerificationError> {
                let mut pre_hash_buffer = [0u8; 256];
                crate::ml_dsa_generic::ml_dsa_65::verify_pre_hashed::<
                    crate::simd::portable::PortableSIMDUnit,
                    crate::samplex4::portable::PortableSampler,
                    crate::hash_functions::portable::Shake128,
                    crate::hash_functions::portable::Shake128X4,
                    crate::hash_functions::portable::Shake256,
                    crate::hash_functions::portable::Shake256Xof,
                    crate::pre_hash::SHAKE128_PH,
                >(
                    verification_key.as_ref(),
                    message,
                    context,
                    &mut pre_hash_buffer,
                    signature.as_ref(),
                )
            }
        }
    };
}

// Instantiations
instantiate! {portable, "Portable ML-DSA 65"}
#[cfg(feature = "simd256")]
instantiate! {avx2, "AVX2 Optimised ML-DSA 65"}
#[cfg(feature = "simd128")]
instantiate! {neon, "Neon Optimised ML-DSA 65"}

/// Generate an ML-DSA 65 Key Pair
///
/// Generate an ML-DSA key pair. The input is a byte array of size
/// [`KEY_GENERATION_RANDOMNESS_SIZE`].
///
/// This function returns an [`MLDSA65KeyPair`].
#[cfg(not(eurydice))]
pub fn generate_key_pair(randomness: [u8; KEY_GENERATION_RANDOMNESS_SIZE]) -> MLDSA65KeyPair {
    let mut signing_key = [0u8; ml_dsa_65::SIGNING_KEY_SIZE];
    let mut verification_key = [0u8; ml_dsa_65::VERIFICATION_KEY_SIZE];
    crate::ml_dsa_generic::ml_dsa_65::generate_key_pair::<
        crate::simd::portable::PortableSIMDUnit,
        crate::samplex4::portable::PortableSampler,
        crate::hash_functions::portable::Shake128X4,
        crate::hash_functions::portable::Shake256,
        crate::hash_functions::portable::Shake256Xof,
        crate::hash_functions::portable::Shake256X4,
    >(randomness, &mut signing_key, &mut verification_key);

    MLDSA65KeyPair {
        signing_key: MLDSASigningKey::new(signing_key),
        verification_key: MLDSAVerificationKey::new(verification_key),
    }
}

/// Sign with ML-DSA 65
///
/// Sign a `message` with the ML-DSA `signing_key`.
///
/// The parameter `context` is used for domain separation
/// and is a byte string of length at most 255 bytes. It
/// may also be empty.
///
/// This function returns an [`MLDSA65Signature`].
#[cfg(not(eurydice))]
pub fn sign(
    signing_key: &MLDSA65SigningKey,
    message: &[u8],
    context: &[u8],
    randomness: [u8; SIGNING_RANDOMNESS_SIZE],
) -> Result<MLDSA65Signature, SigningError> {
    crate::ml_dsa_generic::ml_dsa_65::sign::<
        crate::simd::portable::PortableSIMDUnit,
        crate::samplex4::portable::PortableSampler,
        crate::hash_functions::portable::Shake128X4,
        crate::hash_functions::portable::Shake256,
        crate::hash_functions::portable::Shake256Xof,
        crate::hash_functions::portable::Shake256X4,
    >(signing_key.as_ref(), message, context, randomness)
}

/// Sign with ML-DSA 65 (Algorithm 7 in FIPS204)
///
/// Sign a `message` (assumed to be domain-separated) with the ML-DSA `signing_key`.
///
/// This function returns an [`MLDSA65Signature`].
#[cfg(all(not(eurydice), feature = "acvp"))]
pub fn sign_internal(
    signing_key: &MLDSA65SigningKey,
    message: &[u8],
    randomness: [u8; SIGNING_RANDOMNESS_SIZE],
) -> Result<MLDSA65Signature, SigningError> {
    crate::ml_dsa_generic::multiplexing::ml_dsa_65::sign_internal(
        signing_key.as_ref(),
        message,
        randomness,
    )
}

/// Verify an ML-DSA-65 Signature (Algorithm 8 in FIPS204)
///
/// Returns `Ok` when the `signature` is valid for the `message` (assumed to be domain-separated) and
/// `verification_key`, and a [`VerificationError`] otherwise.
#[cfg(all(not(eurydice), feature = "acvp"))]
pub fn verify_internal(
    verification_key: &MLDSA65VerificationKey,
    message: &[u8],
    signature: &MLDSA65Signature,
) -> Result<(), VerificationError> {
    crate::ml_dsa_generic::multiplexing::ml_dsa_65::verify_internal(
        verification_key.as_ref(),
        message,
        signature.as_ref(),
    )
}

/// Verify an ML-DSA-65 Signature
///
/// The parameter `context` is used for domain separation
/// and is a byte string of length at most 255 bytes. It
/// may also be empty.
///
/// Returns `Ok` when the `signature` is valid for the `message` and
/// `verification_key`, and a [`VerificationError`] otherwise.
#[cfg(not(eurydice))]
pub fn verify(
    verification_key: &MLDSA65VerificationKey,
    message: &[u8],
    context: &[u8],
    signature: &MLDSA65Signature,
) -> Result<(), VerificationError> {
    crate::ml_dsa_generic::ml_dsa_65::verify::<
        crate::simd::portable::PortableSIMDUnit,
        crate::samplex4::portable::PortableSampler,
        crate::hash_functions::portable::Shake128X4,
        crate::hash_functions::portable::Shake256,
        crate::hash_functions::portable::Shake256Xof,
    >(
        verification_key.as_ref(),
        message,
        context,
        signature.as_ref(),
    )
}

/// Sign with HashML-DSA 65, with a SHAKE128 pre-hashing
///
/// Sign a digest of `message` derived using `pre_hash` with the
/// ML-DSA `signing_key`.
///
/// The parameter `context` is used for domain separation
/// and is a byte string of length at most 255 bytes. It
/// may also be empty.
///
/// This function returns an [`MLDSA65Signature`].
#[cfg(not(eurydice))]
pub fn sign_pre_hashed_shake128(
    signing_key: &MLDSA65SigningKey,
    message: &[u8],
    context: &[u8],
    randomness: [u8; SIGNING_RANDOMNESS_SIZE],
) -> Result<MLDSA65Signature, SigningError> {
    let mut pre_hash_buffer = [0u8; 256];
    crate::ml_dsa_generic::ml_dsa_65::sign_pre_hashed::<
        crate::simd::portable::PortableSIMDUnit,
        crate::samplex4::portable::PortableSampler,
        crate::hash_functions::portable::Shake128,
        crate::hash_functions::portable::Shake128X4,
        crate::hash_functions::portable::Shake256,
        crate::hash_functions::portable::Shake256Xof,
        crate::hash_functions::portable::Shake256X4,
        crate::pre_hash::SHAKE128_PH,
    >(
        signing_key.as_ref(),
        message,
        context,
        &mut pre_hash_buffer,
        randomness,
    )
}

/// Verify a HashML-DSA-65 Signature, with a SHAKE128 pre-hashing
///
/// The parameter `context` is used for domain separation
/// and is a byte string of length at most 255 bytes. It
/// may also be empty.
///
/// Returns `Ok` when the `signature` is valid for the `message` and
/// `verification_key`, and a [`VerificationError`] otherwise.
#[cfg(not(eurydice))]
pub fn verify_pre_hashed_shake128(
    verification_key: &MLDSA65VerificationKey,
    message: &[u8],
    context: &[u8],
    signature: &MLDSA65Signature,
) -> Result<(), VerificationError> {
    let mut pre_hash_buffer = [0u8; 256];
    crate::ml_dsa_generic::ml_dsa_65::verify_pre_hashed::<
        crate::simd::portable::PortableSIMDUnit,
        crate::samplex4::portable::PortableSampler,
        crate::hash_functions::portable::Shake128,
        crate::hash_functions::portable::Shake128X4,
        crate::hash_functions::portable::Shake256,
        crate::hash_functions::portable::Shake256Xof,
        crate::pre_hash::SHAKE128_PH,
    >(
        verification_key.as_ref(),
        message,
        context,
        &mut pre_hash_buffer,
        signature.as_ref(),
    )
}