classic-mceliece-rust

A safe pure-rust implementation of the Classic McEliece post-quantum scheme.

The 10 variants have the following designated identifiers:

Who should use it?

Anyone, how wants to use Classic McEliece to negotiate a key between two parties.

How does one use it?

Add this to your Cargo.toml: toml [dependencies] classic-mceliece-rust = "1.0"

To use a specific Classic McEliece variant, you need to import it with the corresponding feature flag:

toml [dependencies] classic-mceliece-rust = { version = "1.0", features = ["mceliece6960119"] }

The simple example illustrates the API: ```rust use classicmceliecerust::AesState; use classicmceliecerust::{cryptokemdec, cryptokemenc, cryptokemkeypair}; use classicmceliecerust::{CRYPTOBYTES, CRYPTOCIPHERTEXTBYTES, CRYPTOPUBLICKEYBYTES, CRYPTOSECRETKEYBYTES};

fn main() -> Result<(), Box> { let mut rng = AesState::new(); let mut pk = [0u8; CRYPTOPUBLICKEYBYTES]; let mut sk = [0u8; CRYPTOSECRETKEYBYTES]; let mut ct = [0u8; CRYPTOCIPHERTEXTBYTES]; let mut ssalice = [0u8; CRYPTOBYTES]; let mut ssbob = [0u8; CRYPTO_BYTES];

cryptokemkeypair(&mut pk, &mut sk, &mut rng)?; cryptokemenc(&mut ct, &mut ssbob, &pk, &mut rng)?; cryptokemdec(&mut ssalice, &ct, &sk)?;

asserteq!(ssbob, ss_alice); } ```

How does one run it?

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.

How fast is it?

All data uses clock cycles as unit (the smaller the better). The rust implementation yielded the following runtime results:

complete KEMkeypairencdec
mceliece348864439,132,283418,968,068268,72243,444,716
mceliece348864f265,775,807222,549,540269,55543,245,009
mceliece4608961,231,610,7381,211,071,786461,924107,828,642
mceliece460896f723,224,611650,813,812435,803104,153,026
mceliece66881282,559,092,0962,231,201,954947,605198,260,095
mceliece6688128f1,166,028,7761,210,393,7991,210,453200,919,923
mceliece69601192,684,515,1492,194,168,2533,135,087194,131,917
mceliece6960119f1,146,146,9831,038,560,4693,101,435194,415,995
mceliece81921283,044,572,0962,873,255,5421,068,166249,912,972
mceliece8192128f1,362,327,6262,009,006,6531,790,924272,566,816

The C reference implementation yielded the following runtime results:

complete KEMkeypairencdec
mceliece348864434,103,000437,187,000187,55773,801,300
mceliece348864f252,423,000180,235,000189,52273,668,000
mceliece460896760,993,000894,497,000298,041154,507,000
mceliece460896f606,225,00044,906,000297,743154,013,000
mceliece66881281,568,900,0001,780,660,000425,50429,575,000
mceliece6688128f109,471,000760,298,000414,358298,173,000
mceliece69601193,405,730,0001,694,410,000840,598287,154,000
mceliece6960119f1,311,130,000942,987,000984,660303,543,000
mceliece81921281,635,550,000760,619,000428,112361,999,000
mceliece8192128f1,772,530,0001,222,720,000534,503392,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

Is it correct?

Yes, besides passing unittests (derived from the C implementation), the generated KAT KEM test files have equivalent MD5 hashes. Namely …

variantexpected MD5 hash
mceliece348864d2def196fde89e938d3d45b2c6f806aa
mceliece348864f84b5357d8dd656bed9297e28beb15057
mceliece4608968aac2122916b901172e49e009efeede6
mceliece460896fd84d3b179e303b9f3fc32ccb6befb886
mceliece6688128b86987d56c45da2e326556864e66bda7
mceliece6688128fae1e42cac2a885a87a2c241e05391481
mceliece69601199d9b3c9e8d7595503248131c584394be
mceliece6960119fc79b1bd28fd307f8d157bd566374bfb3
mceliece8192128b233e2585359a1133a1135c66fa48282
mceliece8192128fd21bcb80dde24826e2c14254da917df3

Where is the source code?

On github.

What is the content's license?

MIT License

Changelog

Where can I ask you to fix a bug?

On github.