This is a pure-rust safe-rust implementation of the Classic McEliece post-quantum scheme.
sha3
as SHA-3 implementation and aes
as AES block cipher (used as RNG) implementationmceliece348864
) and 500 milliseconds (mceliece8192128f
) to run on a modern computerThe 10 variants have the following designated identifiers:
mceliece348864
mceliece348864f
mceliece460896
mceliece460896f
mceliece6688128
mceliece6688128f
mceliece6960119
mceliece6960119f
mceliece8192128
mceliece8192128f
Anyone, how wants to use Classic McEliece to negotiate a key between two parties.
alloc
)?Add this to your Cargo.toml
:
toml
[dependencies]
classic-mceliece-rust = "2.0"
To use a specific Classic McEliece variant, you need to import it with the corresponding feature flag:
toml
[dependencies]
classic-mceliece-rust = { version = "2.0", features = ["mceliece6960119"] }
Assuming this dependency, the simplest and most ergonomic way of using the library
is with heap allocated keys and the *_boxed
KEM step functions. First, we import them:
rust
use classic_mceliece_rust::{keypair_boxed, encapsulate_boxed, decapsulate_boxed};
Followingly, we run the KEM and provide generated keys accordingly. Here, we consider an example where we run it in a separate thread (be aware that the example also depends on the rand crate):
```rust fn runkem() { let mut rng = rand::threadrng();
// Alice computes the keypair let (publickey, secretkey) = keypair_boxed(&mut rng);
// Send secret_key
over to Bob.
// Bob computes the shared secret and a ciphertext
let (ciphertext, sharedsecretbob) = encapsulateboxed(&publickey, &mut rng);
// Send ciphertext
back to Alice.
// Alice decapsulates the ciphertext...
let sharedsecretalice = decapsulateboxed(&ciphertext, &secretkey);
// ... and ends up with the same key material as Bob. asserteq!(sharedsecretbob.asarray(), sharedsecretalice.as_array()); }
fn main() { std::thread::Builder::new() // This library needs quite a lot of stack space to work .stacksize(2 * 1024 * 1024) .spawn(runkem) .unwrap() .join() .unwrap(); } ```
Pay attention that public keys in Classic McEliece are huge (between 255 KB and 1.3 MB). As a result, running the algorithm requires a lot of memory. You need to consider where you store it. In case of this API, the advantages are …
keypair
uses more stack than is available by default. Such stack size limitations can be avoided with the heap-allocation API (see Windows remark below).alloc
)?The other option is that you exclude the heap-allocation API and use the provided stack-allocation API. Its advantages are:
no_std
environment.Thus, in this section we want to show you how to use this API without the heap. For this, you need to disable feature alloc
which is enabled per default (this line retains default feature zeroize
but removes default feature alloc
):
toml
classic-mceliece-rust = { version = "2.0", default-features = false, features = ["zeroize"] }
How does one use the API then (be aware that the example also depends on the rand crate)?
```rust use classicmceliecerust::{keypair, encapsulate, decapsulate}; use classicmceliecerust::{CRYPTOBYTES, CRYPTOPUBLICKEYBYTES, CRYPTO_SECRETKEYBYTES};
fn main() { let mut rng = rand::thread_rng();
// Please mind that public_key_buf
is very large.
let mut publickeybuf = [0u8; CRYPTOPUBLICKEYBYTES];
let mut secretkeybuf = [0u8; CRYPTOSECRETKEYBYTES];
let (publickey, secretkey) = keypair(&mut publickeybuf, &mut secretkeybuf, &mut rng);
let mut sharedsecretbobbuf = [0u8; CRYPTOBYTES]; let (ciphertext, sharedsecretbob) = encapsulate(&publickey, &mut sharedsecretbobbuf, &mut rng);
let mut sharedsecretalicebuf = [0u8; CRYPTOBYTES]; let sharedsecretalice = decapsulate(&ciphertext, &secretkey, &mut sharedsecretalicebuf);
asserteq!(sharedsecretbob.asarray(), sharedsecretalice.as_array()); } ```
Here, you can see how the keys are allocated explicitly.
If you want your program to be portable with stack allocation and not unexpectedly crash, you should probably run the entire key exchange in a dedicated thread with a large enough stack size. This code snippet shows the idea:
rust,no_run
std::thread::Builder::new()
.stack_size(4 * 1024 * 1024)
.spawn(|| {/* Run the KEM here */})
.unwrap();
If the kem
feature is enabled, key encapsulation and decapsulation can also be done via
the standard traits in the kem
crate.
If the zeroize
feature is enabled (it is by default), all key types that contain anything secret
implements Zeroize
and ZeroizeOnDrop
. This makes them clear their memory when they go out of
scope, and lowers the risk of secret key material leaking in one way or another.
Please mind that this of course makes any buffers you pass into the library useless for reading
out the key from. Instead of trying to fetch the key material from the buffers you pass in,
get it from the as_array
method.
```rust
use classic_mceliece_rust::keypair;
use classic_mceliece_rust::{CRYPTO_PUBLICKEYBYTES, CRYPTO_SECRETKEYBYTES};
let mut rng = rand::thread_rng();
let mut pk_buf = [0u8; CRYPTO_PUBLICKEYBYTES];
// Initialize to non-zero to show that it has been set to zero by the drop later
let mut sk_buf = [255u8; CRYPTO_SECRETKEYBYTES];
// This is the WRONG way of accessing your keys. The buffer will
// be cleared once the `PrivateKey` returned from `keypair` goes out of scope.
// You should not rely on that array for anything except providing a temporary storage
// location to this library.
#[cfg(feature = "zeroize")]
{
let (_, secret_key) = keypair(&mut pk_buf, &mut sk_buf, &mut rng);
drop(secret_key);
// Ouch! The array only has zeroes now.
assert_eq!(sk_buf, [0; CRYPTO_SECRETKEYBYTES]);
}
// Correct way of getting the secret key bytes if you do need them. However,
// if you want the secrets to stay secret, you should try to not read them out of their
// storage at all
{
let (_, secret_key) = keypair(&mut pk_buf, &mut sk_buf, &mut rng);
assert_ne!(secret_key.as_array(), &[0; CRYPTO_SECRETKEYBYTES]);
}
} ```
This library comes with two examples:
bash
$ cargo run --example basic
The output annotates messages with Alice/Bob to illustrate which data is processed by which party.
The katkem
example implements the classic request/response file structure which is part of the NIST PQC framework.
bash
$ cargo run --example katkem PQCkemKAT_935.req PQCkemKAT_935.rsp
$ cargo run --example katkem PQCkemKAT_935.rsp
The different variants can be enabled through feature flags:
bash
$ cargo run --example katkem --features mceliece6960119 -- PQCkemKAT_1450.req PQCkemKAT_1450.rsp
mceliece348864
is the default variant. You cannot enable two variants simultaneously.
All data uses clock cycles as unit (the smaller the better). The rust implementation yielded the following runtime results:
complete KEM | keypair | enc | dec | |
mceliece348864 | 460,062,191 | 439,682,143 | 222,424 | 42,046,357 |
mceliece348864f | 244,943,900 | 203,564,820 | 215,971 | 41,648,773 |
mceliece460896 | 1,326,425,784 | 1,434,864,061 | 487,522 | 111,547,716 |
mceliece460896f | 789,636,856 | 652,117,200 | 553,301 | 106,521,703 |
mceliece6688128 | 3,188,205,266 | 2,596,052,574 | 785,763 | 202,774,928 |
mceliece6688128f | 1,236,809,020 | 1,059,087,715 | 826,899 | 203,907,226 |
mceliece6960119 | 2,639,852,573 | 2,532,146,126 | 3,864,285 | 203,959,009 |
mceliece6960119f | 1,165,079,187 | 965,134,546 | 3,416,795 | 197,089,546 |
mceliece8192128 | 3,129,183,262 | 2,754,933,130 | 965,822 | 247,083,745 |
mceliece8192128f | 1,342,438,451 | 1,150,297,595 | 1,068,317 | 242,545,160 |
The C reference implementation yielded the following runtime results:
complete KEM | keypair | enc | dec | |
mceliece348864 | 434,103,000 | 437,187,000 | 187,557 | 73,801,300 |
mceliece348864f | 252,423,000 | 180,235,000 | 189,522 | 73,668,000 |
mceliece460896 | 760,993,000 | 894,497,000 | 298,041 | 154,507,000 |
mceliece460896f | 606,225,000 | 44,906,000 | 297,743 | 154,013,000 |
mceliece6688128 | 1,568,900,000 | 1,780,660,000 | 425,504 | 29,575,000 |
mceliece6688128f | 109,471,000 | 760,298,000 | 414,358 | 298,173,000 |
mceliece6960119 | 3,405,730,000 | 1,694,410,000 | 840,598 | 287,154,000 |
mceliece6960119f | 1,311,130,000 | 942,987,000 | 984,660 | 303,543,000 |
mceliece8192128 | 1,635,550,000 | 760,619,000 | 428,112 | 361,999,000 |
mceliece8192128f | 1,772,530,000 | 1,222,720,000 | 534,503 | 392,729,000 |
The tests were done on a Lenovo Thinkpad x260 (Intel Core i5-6200U CPU @ 2.30GHz). In the case of rust, criterion 0.3.5 has been used as given in benches/
and in case of C, Google's benchmark with PFM support and disabled CPU frequency scaling. You can run the benchmark suite yourself with the bench
subcommand and optionally some variant feature flag:
bash
$ cargo bench --features mceliece348864
Yes, besides passing unittests (derived from the C implementation), the generated KAT KEM test files have equivalent MD5 hashes. Namely …
variant | expected MD5 hash |
mceliece348864 | d2def196fde89e938d3d45b2c6f806aa |
mceliece348864f | 84b5357d8dd656bed9297e28beb15057 |
mceliece460896 | 8aac2122916b901172e49e009efeede6 |
mceliece460896f | d84d3b179e303b9f3fc32ccb6befb886 |
mceliece6688128 | b86987d56c45da2e326556864e66bda7 |
mceliece6688128f | ae1e42cac2a885a87a2c241e05391481 |
mceliece6960119 | 9d9b3c9e8d7595503248131c584394be |
mceliece6960119f | c79b1bd28fd307f8d157bd566374bfb3 |
mceliece8192128 | b233e2585359a1133a1135c66fa48282 |
mceliece8192128f | d21bcb80dde24826e2c14254da917df3 |
On github.
On github.