sntrup-sys 0.1.2

Streamlined NTRU Prime, extracted from SUPERCOP with a deduplicated vendor tree, compiled via the cc crate
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
//! Rust FFI bindings over the extracted, deduplicated SUPERCOP Streamlined
//! NTRU Prime sources in `vendor/`. Every module wraps one parameter set,
//! all sharing one compiled copy of `vendor/common/` (see
//! `vendor/NOTICE.md` for why the split between shared and per-parameter-
//! set code is drawn where it is). Each enabled parameter set gets its own
//! module (gated by the matching Cargo feature), exposing `keypair()`,
//! `encapsulate(pk)`, and `decapsulate(c, sk)`.
//!
//! # Randomness
//!
//! The vendored C code calls a single external `randombytes` C function for
//! all key generation and encapsulation randomness. This crate implements
//! it here using `getrandom` (the OS CSPRNG), satisfying the one external
//! symbol every vendored directory expects (see vendor/NOTICE.md).
//!
//! # Zeroization
//!
//! The secret key (from `keypair()`) and the shared secret (from
//! `encapsulate()`/`decapsulate()`) are returned as
//! `Zeroizing<[u8; N]>` (from the `zeroize` crate): a fixed-size,
//! stack-allocated buffer that's wiped on drop. The FFI call writes
//! directly into that buffer -- there's no intermediate `Vec` the secret
//! passes through first, so there's nothing left unzeroized after the
//! `Zeroizing` wrapper does its job. `decapsulate()` also *takes* `sk` as
//! `&Zeroizing<[u8; SECRET_KEY_BYTES]>` rather than `&[u8]`, so a secret
//! key that was never wrapped in `Zeroizing` in the first place can't be
//! passed in by accident -- the type is part of the contract, not just a
//! runtime length check. The public key and ciphertext are not secret and
//! stay plain `Vec<u8>`/`&[u8]`.

/// # Safety
///
/// `buf` must be valid for writes of `buf_len` bytes and not aliased by any
/// other live reference for the duration of this call. The vendored C code
/// upholds this by construction (it always passes a real buffer of exactly
/// `buf_len` bytes) but Rust can't verify that across the FFI boundary, so
/// the contract is on the caller, hence `unsafe fn`.
#[unsafe(no_mangle)]
pub unsafe extern "C" fn randombytes(buf: *mut u8, buf_len: u64) {
    let slice = unsafe { std::slice::from_raw_parts_mut(buf, buf_len as usize) };
    getrandom::fill(slice).expect("OS randomness source failed");
}

#[cfg(feature = "sntrup653")]
pub mod sntrup653 {
    use std::os::raw::c_int;
    use zeroize::Zeroizing;

    pub const PUBLIC_KEY_BYTES: usize = 994;
    pub const SECRET_KEY_BYTES: usize = 1518;
    pub const CIPHERTEXT_BYTES: usize = 897;
    pub const SHARED_SECRET_BYTES: usize = 32;

    unsafe extern "C" {
        fn sntrup653_ref_crypto_kem_keypair(pk: *mut u8, sk: *mut u8) -> c_int;
        fn sntrup653_ref_crypto_kem_enc(c: *mut u8, k: *mut u8, pk: *const u8) -> c_int;
        fn sntrup653_ref_crypto_kem_dec(k: *mut u8, c: *const u8, sk: *const u8) -> c_int;
    }

    /// Generate a fresh keypair. Returns `(public_key, secret_key)`; the
    /// secret key is zeroized on drop.
    pub fn keypair() -> (Vec<u8>, Zeroizing<[u8; SECRET_KEY_BYTES]>) {
        let mut pk = vec![0u8; PUBLIC_KEY_BYTES];
        let mut sk = Zeroizing::new([0u8; SECRET_KEY_BYTES]);
        let rc = unsafe { sntrup653_ref_crypto_kem_keypair(pk.as_mut_ptr(), sk.as_mut_ptr()) };
        assert_eq!(rc, 0, "sntrup653_ref_crypto_kem_keypair failed");
        (pk, sk)
    }

    /// Encapsulate against `pk`. Returns `(ciphertext, shared_secret)`; the
    /// shared secret is zeroized on drop.
    pub fn encapsulate(pk: &[u8]) -> (Vec<u8>, Zeroizing<[u8; SHARED_SECRET_BYTES]>) {
        assert_eq!(pk.len(), PUBLIC_KEY_BYTES, "invalid public key length");
        let mut c = vec![0u8; CIPHERTEXT_BYTES];
        let mut ss = Zeroizing::new([0u8; SHARED_SECRET_BYTES]);
        let rc =
            unsafe { sntrup653_ref_crypto_kem_enc(c.as_mut_ptr(), ss.as_mut_ptr(), pk.as_ptr()) };
        assert_eq!(rc, 0, "sntrup653_ref_crypto_kem_enc failed");
        (c, ss)
    }

    /// Decapsulate `c` using `sk`. Returns the shared secret, zeroized on drop.
    ///
    /// `sk` must be a `Zeroizing`-wrapped secret key (exactly what `keypair()`
    /// returns) rather than a bare `&[u8]`, so the type system rules out
    /// passing a secret key that was never protected by `Zeroizing` in the
    /// first place; its length is therefore already guaranteed by the type,
    /// with nothing left to check at runtime.
    ///
    /// Per the Streamlined NTRU Prime KEM spec this always returns *some*
    /// 32-byte value, even for an invalid/malformed ciphertext (implicit
    /// rejection) -- it does not signal failure via the return value, by
    /// design, to avoid a decryption-failure oracle.
    pub fn decapsulate(
        c: &[u8],
        sk: &Zeroizing<[u8; SECRET_KEY_BYTES]>,
    ) -> Zeroizing<[u8; SHARED_SECRET_BYTES]> {
        assert_eq!(c.len(), CIPHERTEXT_BYTES, "invalid ciphertext length");
        let mut ss = Zeroizing::new([0u8; SHARED_SECRET_BYTES]);
        unsafe { sntrup653_ref_crypto_kem_dec(ss.as_mut_ptr(), c.as_ptr(), sk.as_ptr()) };
        ss
    }
}

#[cfg(feature = "sntrup761")]
pub mod sntrup761 {
    use std::os::raw::c_int;
    use zeroize::Zeroizing;

    pub const PUBLIC_KEY_BYTES: usize = 1158;
    pub const SECRET_KEY_BYTES: usize = 1763;
    pub const CIPHERTEXT_BYTES: usize = 1039;
    pub const SHARED_SECRET_BYTES: usize = 32;

    unsafe extern "C" {
        fn sntrup761_ref_crypto_kem_keypair(pk: *mut u8, sk: *mut u8) -> c_int;
        fn sntrup761_ref_crypto_kem_enc(c: *mut u8, k: *mut u8, pk: *const u8) -> c_int;
        fn sntrup761_ref_crypto_kem_dec(k: *mut u8, c: *const u8, sk: *const u8) -> c_int;
    }

    /// Generate a fresh keypair. Returns `(public_key, secret_key)`; the
    /// secret key is zeroized on drop.
    pub fn keypair() -> (Vec<u8>, Zeroizing<[u8; SECRET_KEY_BYTES]>) {
        let mut pk = vec![0u8; PUBLIC_KEY_BYTES];
        let mut sk = Zeroizing::new([0u8; SECRET_KEY_BYTES]);
        let rc = unsafe { sntrup761_ref_crypto_kem_keypair(pk.as_mut_ptr(), sk.as_mut_ptr()) };
        assert_eq!(rc, 0, "sntrup761_ref_crypto_kem_keypair failed");
        (pk, sk)
    }

    /// Encapsulate against `pk`. Returns `(ciphertext, shared_secret)`; the
    /// shared secret is zeroized on drop.
    pub fn encapsulate(pk: &[u8]) -> (Vec<u8>, Zeroizing<[u8; SHARED_SECRET_BYTES]>) {
        assert_eq!(pk.len(), PUBLIC_KEY_BYTES, "invalid public key length");
        let mut c = vec![0u8; CIPHERTEXT_BYTES];
        let mut ss = Zeroizing::new([0u8; SHARED_SECRET_BYTES]);
        let rc =
            unsafe { sntrup761_ref_crypto_kem_enc(c.as_mut_ptr(), ss.as_mut_ptr(), pk.as_ptr()) };
        assert_eq!(rc, 0, "sntrup761_ref_crypto_kem_enc failed");
        (c, ss)
    }

    /// Decapsulate `c` using `sk`. Returns the shared secret, zeroized on drop.
    ///
    /// `sk` must be a `Zeroizing`-wrapped secret key (exactly what `keypair()`
    /// returns) rather than a bare `&[u8]`, so the type system rules out
    /// passing a secret key that was never protected by `Zeroizing` in the
    /// first place; its length is therefore already guaranteed by the type,
    /// with nothing left to check at runtime.
    ///
    /// Per the Streamlined NTRU Prime KEM spec this always returns *some*
    /// 32-byte value, even for an invalid/malformed ciphertext (implicit
    /// rejection) -- it does not signal failure via the return value, by
    /// design, to avoid a decryption-failure oracle.
    pub fn decapsulate(
        c: &[u8],
        sk: &Zeroizing<[u8; SECRET_KEY_BYTES]>,
    ) -> Zeroizing<[u8; SHARED_SECRET_BYTES]> {
        assert_eq!(c.len(), CIPHERTEXT_BYTES, "invalid ciphertext length");
        let mut ss = Zeroizing::new([0u8; SHARED_SECRET_BYTES]);
        unsafe { sntrup761_ref_crypto_kem_dec(ss.as_mut_ptr(), c.as_ptr(), sk.as_ptr()) };
        ss
    }
}

#[cfg(feature = "sntrup857")]
pub mod sntrup857 {
    use std::os::raw::c_int;
    use zeroize::Zeroizing;

    pub const PUBLIC_KEY_BYTES: usize = 1322;
    pub const SECRET_KEY_BYTES: usize = 1999;
    pub const CIPHERTEXT_BYTES: usize = 1184;
    pub const SHARED_SECRET_BYTES: usize = 32;

    unsafe extern "C" {
        fn sntrup857_ref_crypto_kem_keypair(pk: *mut u8, sk: *mut u8) -> c_int;
        fn sntrup857_ref_crypto_kem_enc(c: *mut u8, k: *mut u8, pk: *const u8) -> c_int;
        fn sntrup857_ref_crypto_kem_dec(k: *mut u8, c: *const u8, sk: *const u8) -> c_int;
    }

    /// Generate a fresh keypair. Returns `(public_key, secret_key)`; the
    /// secret key is zeroized on drop.
    pub fn keypair() -> (Vec<u8>, Zeroizing<[u8; SECRET_KEY_BYTES]>) {
        let mut pk = vec![0u8; PUBLIC_KEY_BYTES];
        let mut sk = Zeroizing::new([0u8; SECRET_KEY_BYTES]);
        let rc = unsafe { sntrup857_ref_crypto_kem_keypair(pk.as_mut_ptr(), sk.as_mut_ptr()) };
        assert_eq!(rc, 0, "sntrup857_ref_crypto_kem_keypair failed");
        (pk, sk)
    }

    /// Encapsulate against `pk`. Returns `(ciphertext, shared_secret)`; the
    /// shared secret is zeroized on drop.
    pub fn encapsulate(pk: &[u8]) -> (Vec<u8>, Zeroizing<[u8; SHARED_SECRET_BYTES]>) {
        assert_eq!(pk.len(), PUBLIC_KEY_BYTES, "invalid public key length");
        let mut c = vec![0u8; CIPHERTEXT_BYTES];
        let mut ss = Zeroizing::new([0u8; SHARED_SECRET_BYTES]);
        let rc =
            unsafe { sntrup857_ref_crypto_kem_enc(c.as_mut_ptr(), ss.as_mut_ptr(), pk.as_ptr()) };
        assert_eq!(rc, 0, "sntrup857_ref_crypto_kem_enc failed");
        (c, ss)
    }

    /// Decapsulate `c` using `sk`. Returns the shared secret, zeroized on drop.
    ///
    /// `sk` must be a `Zeroizing`-wrapped secret key (exactly what `keypair()`
    /// returns) rather than a bare `&[u8]`, so the type system rules out
    /// passing a secret key that was never protected by `Zeroizing` in the
    /// first place; its length is therefore already guaranteed by the type,
    /// with nothing left to check at runtime.
    ///
    /// Per the Streamlined NTRU Prime KEM spec this always returns *some*
    /// 32-byte value, even for an invalid/malformed ciphertext (implicit
    /// rejection) -- it does not signal failure via the return value, by
    /// design, to avoid a decryption-failure oracle.
    pub fn decapsulate(
        c: &[u8],
        sk: &Zeroizing<[u8; SECRET_KEY_BYTES]>,
    ) -> Zeroizing<[u8; SHARED_SECRET_BYTES]> {
        assert_eq!(c.len(), CIPHERTEXT_BYTES, "invalid ciphertext length");
        let mut ss = Zeroizing::new([0u8; SHARED_SECRET_BYTES]);
        unsafe { sntrup857_ref_crypto_kem_dec(ss.as_mut_ptr(), c.as_ptr(), sk.as_ptr()) };
        ss
    }
}

#[cfg(feature = "sntrup953")]
pub mod sntrup953 {
    use std::os::raw::c_int;
    use zeroize::Zeroizing;

    pub const PUBLIC_KEY_BYTES: usize = 1505;
    pub const SECRET_KEY_BYTES: usize = 2254;
    pub const CIPHERTEXT_BYTES: usize = 1349;
    pub const SHARED_SECRET_BYTES: usize = 32;

    unsafe extern "C" {
        fn sntrup953_ref_crypto_kem_keypair(pk: *mut u8, sk: *mut u8) -> c_int;
        fn sntrup953_ref_crypto_kem_enc(c: *mut u8, k: *mut u8, pk: *const u8) -> c_int;
        fn sntrup953_ref_crypto_kem_dec(k: *mut u8, c: *const u8, sk: *const u8) -> c_int;
    }

    /// Generate a fresh keypair. Returns `(public_key, secret_key)`; the
    /// secret key is zeroized on drop.
    pub fn keypair() -> (Vec<u8>, Zeroizing<[u8; SECRET_KEY_BYTES]>) {
        let mut pk = vec![0u8; PUBLIC_KEY_BYTES];
        let mut sk = Zeroizing::new([0u8; SECRET_KEY_BYTES]);
        let rc = unsafe { sntrup953_ref_crypto_kem_keypair(pk.as_mut_ptr(), sk.as_mut_ptr()) };
        assert_eq!(rc, 0, "sntrup953_ref_crypto_kem_keypair failed");
        (pk, sk)
    }

    /// Encapsulate against `pk`. Returns `(ciphertext, shared_secret)`; the
    /// shared secret is zeroized on drop.
    pub fn encapsulate(pk: &[u8]) -> (Vec<u8>, Zeroizing<[u8; SHARED_SECRET_BYTES]>) {
        assert_eq!(pk.len(), PUBLIC_KEY_BYTES, "invalid public key length");
        let mut c = vec![0u8; CIPHERTEXT_BYTES];
        let mut ss = Zeroizing::new([0u8; SHARED_SECRET_BYTES]);
        let rc =
            unsafe { sntrup953_ref_crypto_kem_enc(c.as_mut_ptr(), ss.as_mut_ptr(), pk.as_ptr()) };
        assert_eq!(rc, 0, "sntrup953_ref_crypto_kem_enc failed");
        (c, ss)
    }

    /// Decapsulate `c` using `sk`. Returns the shared secret, zeroized on drop.
    ///
    /// `sk` must be a `Zeroizing`-wrapped secret key (exactly what `keypair()`
    /// returns) rather than a bare `&[u8]`, so the type system rules out
    /// passing a secret key that was never protected by `Zeroizing` in the
    /// first place; its length is therefore already guaranteed by the type,
    /// with nothing left to check at runtime.
    ///
    /// Per the Streamlined NTRU Prime KEM spec this always returns *some*
    /// 32-byte value, even for an invalid/malformed ciphertext (implicit
    /// rejection) -- it does not signal failure via the return value, by
    /// design, to avoid a decryption-failure oracle.
    pub fn decapsulate(
        c: &[u8],
        sk: &Zeroizing<[u8; SECRET_KEY_BYTES]>,
    ) -> Zeroizing<[u8; SHARED_SECRET_BYTES]> {
        assert_eq!(c.len(), CIPHERTEXT_BYTES, "invalid ciphertext length");
        let mut ss = Zeroizing::new([0u8; SHARED_SECRET_BYTES]);
        unsafe { sntrup953_ref_crypto_kem_dec(ss.as_mut_ptr(), c.as_ptr(), sk.as_ptr()) };
        ss
    }
}

#[cfg(feature = "sntrup1013")]
pub mod sntrup1013 {
    use std::os::raw::c_int;
    use zeroize::Zeroizing;

    pub const PUBLIC_KEY_BYTES: usize = 1623;
    pub const SECRET_KEY_BYTES: usize = 2417;
    pub const CIPHERTEXT_BYTES: usize = 1455;
    pub const SHARED_SECRET_BYTES: usize = 32;

    unsafe extern "C" {
        fn sntrup1013_ref_crypto_kem_keypair(pk: *mut u8, sk: *mut u8) -> c_int;
        fn sntrup1013_ref_crypto_kem_enc(c: *mut u8, k: *mut u8, pk: *const u8) -> c_int;
        fn sntrup1013_ref_crypto_kem_dec(k: *mut u8, c: *const u8, sk: *const u8) -> c_int;
    }

    /// Generate a fresh keypair. Returns `(public_key, secret_key)`; the
    /// secret key is zeroized on drop.
    pub fn keypair() -> (Vec<u8>, Zeroizing<[u8; SECRET_KEY_BYTES]>) {
        let mut pk = vec![0u8; PUBLIC_KEY_BYTES];
        let mut sk = Zeroizing::new([0u8; SECRET_KEY_BYTES]);
        let rc = unsafe { sntrup1013_ref_crypto_kem_keypair(pk.as_mut_ptr(), sk.as_mut_ptr()) };
        assert_eq!(rc, 0, "sntrup1013_ref_crypto_kem_keypair failed");
        (pk, sk)
    }

    /// Encapsulate against `pk`. Returns `(ciphertext, shared_secret)`; the
    /// shared secret is zeroized on drop.
    pub fn encapsulate(pk: &[u8]) -> (Vec<u8>, Zeroizing<[u8; SHARED_SECRET_BYTES]>) {
        assert_eq!(pk.len(), PUBLIC_KEY_BYTES, "invalid public key length");
        let mut c = vec![0u8; CIPHERTEXT_BYTES];
        let mut ss = Zeroizing::new([0u8; SHARED_SECRET_BYTES]);
        let rc =
            unsafe { sntrup1013_ref_crypto_kem_enc(c.as_mut_ptr(), ss.as_mut_ptr(), pk.as_ptr()) };
        assert_eq!(rc, 0, "sntrup1013_ref_crypto_kem_enc failed");
        (c, ss)
    }

    /// Decapsulate `c` using `sk`. Returns the shared secret, zeroized on drop.
    ///
    /// `sk` must be a `Zeroizing`-wrapped secret key (exactly what `keypair()`
    /// returns) rather than a bare `&[u8]`, so the type system rules out
    /// passing a secret key that was never protected by `Zeroizing` in the
    /// first place; its length is therefore already guaranteed by the type,
    /// with nothing left to check at runtime.
    ///
    /// Per the Streamlined NTRU Prime KEM spec this always returns *some*
    /// 32-byte value, even for an invalid/malformed ciphertext (implicit
    /// rejection) -- it does not signal failure via the return value, by
    /// design, to avoid a decryption-failure oracle.
    pub fn decapsulate(
        c: &[u8],
        sk: &Zeroizing<[u8; SECRET_KEY_BYTES]>,
    ) -> Zeroizing<[u8; SHARED_SECRET_BYTES]> {
        assert_eq!(c.len(), CIPHERTEXT_BYTES, "invalid ciphertext length");
        let mut ss = Zeroizing::new([0u8; SHARED_SECRET_BYTES]);
        unsafe { sntrup1013_ref_crypto_kem_dec(ss.as_mut_ptr(), c.as_ptr(), sk.as_ptr()) };
        ss
    }
}

#[cfg(feature = "sntrup1277")]
pub mod sntrup1277 {
    use std::os::raw::c_int;
    use zeroize::Zeroizing;

    pub const PUBLIC_KEY_BYTES: usize = 2067;
    pub const SECRET_KEY_BYTES: usize = 3059;
    pub const CIPHERTEXT_BYTES: usize = 1847;
    pub const SHARED_SECRET_BYTES: usize = 32;

    unsafe extern "C" {
        fn sntrup1277_ref_crypto_kem_keypair(pk: *mut u8, sk: *mut u8) -> c_int;
        fn sntrup1277_ref_crypto_kem_enc(c: *mut u8, k: *mut u8, pk: *const u8) -> c_int;
        fn sntrup1277_ref_crypto_kem_dec(k: *mut u8, c: *const u8, sk: *const u8) -> c_int;
    }

    /// Generate a fresh keypair. Returns `(public_key, secret_key)`; the
    /// secret key is zeroized on drop.
    pub fn keypair() -> (Vec<u8>, Zeroizing<[u8; SECRET_KEY_BYTES]>) {
        let mut pk = vec![0u8; PUBLIC_KEY_BYTES];
        let mut sk = Zeroizing::new([0u8; SECRET_KEY_BYTES]);
        let rc = unsafe { sntrup1277_ref_crypto_kem_keypair(pk.as_mut_ptr(), sk.as_mut_ptr()) };
        assert_eq!(rc, 0, "sntrup1277_ref_crypto_kem_keypair failed");
        (pk, sk)
    }

    /// Encapsulate against `pk`. Returns `(ciphertext, shared_secret)`; the
    /// shared secret is zeroized on drop.
    pub fn encapsulate(pk: &[u8]) -> (Vec<u8>, Zeroizing<[u8; SHARED_SECRET_BYTES]>) {
        assert_eq!(pk.len(), PUBLIC_KEY_BYTES, "invalid public key length");
        let mut c = vec![0u8; CIPHERTEXT_BYTES];
        let mut ss = Zeroizing::new([0u8; SHARED_SECRET_BYTES]);
        let rc =
            unsafe { sntrup1277_ref_crypto_kem_enc(c.as_mut_ptr(), ss.as_mut_ptr(), pk.as_ptr()) };
        assert_eq!(rc, 0, "sntrup1277_ref_crypto_kem_enc failed");
        (c, ss)
    }

    /// Decapsulate `c` using `sk`. Returns the shared secret, zeroized on drop.
    ///
    /// `sk` must be a `Zeroizing`-wrapped secret key (exactly what `keypair()`
    /// returns) rather than a bare `&[u8]`, so the type system rules out
    /// passing a secret key that was never protected by `Zeroizing` in the
    /// first place; its length is therefore already guaranteed by the type,
    /// with nothing left to check at runtime.
    ///
    /// Per the Streamlined NTRU Prime KEM spec this always returns *some*
    /// 32-byte value, even for an invalid/malformed ciphertext (implicit
    /// rejection) -- it does not signal failure via the return value, by
    /// design, to avoid a decryption-failure oracle.
    pub fn decapsulate(
        c: &[u8],
        sk: &Zeroizing<[u8; SECRET_KEY_BYTES]>,
    ) -> Zeroizing<[u8; SHARED_SECRET_BYTES]> {
        assert_eq!(c.len(), CIPHERTEXT_BYTES, "invalid ciphertext length");
        let mut ss = Zeroizing::new([0u8; SHARED_SECRET_BYTES]);
        unsafe { sntrup1277_ref_crypto_kem_dec(ss.as_mut_ptr(), c.as_ptr(), sk.as_ptr()) };
        ss
    }
}