This crate is a pure-Rust, no-std implementation of draft 3 of the Saber key encapsulation mechanism (KEM). Saber is a lattice-based KEM that is designed to be secure against classical and quantum adversaries. It comes three variants:
- LightSaber, which is designed to have security roughly equivalent to AES-128
- Saber, which is designed to have security roughly equivalent to AES-192
- FireSaber, which is designed to have security roughly equivalent to AES-256
This crate has not been audited in any sense of the word. Use at your own risk.
In general, if you are looking to use a post-quantum KEM and have no other requirements, you should use ML-KEM (aka "Kyber", its pre-standardization name), since it is faster and more standardized than Saber. However, Saber has two small benefits over Kyber:
- All Saber public keys and ciphertexts pack perfectly into bytes. So if you need to perform a keyed permutation on a KEM's public keys, as is required in some ideal-cipher-based constructions such as CAKE, you can simply use a wide-block cipher over a serialized Saber public key. In comparison Kyber requires you to define a permutation over arrays of mod-q values (note: Kyber public keys actually can be compressed to pack into bytes, but nobody has proven it secure; Theorem 2 of the original paper only considers the uncompressed scheme).
- Relatedly, all Saber arithmetic is modulo a power of two, which is extremely simple for CPUs to work with. Arithmetic modulo a prime can yield much faster computations, but it can also cause accidental timing leaks due to compilers being too smart. Such vulnerabilities have affected Kyber and curve25519. I don't claim any of these other projects are insecure, just that this is a specific issue they must contend with going forward, that Saber does not have to.
This crate is compatible with Saber's C reference implementation. Known-answer tests (KATs) test vectors can be found in tests/
. Test vectors were taken directly from the previously linked repo, and converted to JSON using tests/convert_rsp_to_json.py
.
The following code can be found in examples/simple.rs
.
use saber_kem::lightsaber::{
LightsaberCiphertext, LightsaberPublicKey, LightsaberSecretKey, LIGHTSABER_CIPHERTEXT_LEN,
};
let mut rng = rand::thread_rng();
// Generate a keypair
let sk = LightsaberSecretKey::generate(&mut rng);
let pk = sk.public_key();
// Serialize the secret key, maybe to save on disk
let mut sk_bytes = [0u8; LightsaberSecretKey::SERIALIZED_LEN];
sk.to_bytes(&mut sk_bytes);
let slice_containing_sk = sk_bytes.as_slice();
// Deserialize the secret key
// The API only accepts fixed-len slices, so we have to cast it first
assert_eq!(
slice_containing_sk.len(),
LightsaberSecretKey::SERIALIZED_LEN
);
let sk_arr = slice_containing_sk.try_into().unwrap();
let sk = LightsaberSecretKey::from_bytes(sk_arr);
// Also serialize and deserialize the public key
let mut pk_bytes = [0u8; LightsaberPublicKey::SERIALIZED_LEN];
pk.to_bytes(&mut pk_bytes);
let slice_containing_pk = pk_bytes.as_slice();
// The API only accepts fixed-len slices, so we have to cast it first
assert_eq!(
slice_containing_pk.len(),
LightsaberPublicKey::SERIALIZED_LEN
);
let pk_arr = slice_containing_pk.try_into().unwrap();
let pk = LightsaberPublicKey::from_bytes(pk_arr);
// Encapsulate a shared secret, ss1, to pk
let (_ct, _ss1) = pk.encapsulate(&mut rng);
// Alternatively, if you have a buffer and want to avoid an extra allocation, encapsulate in
// place. LightSaberCiphertext is just a byte array, so no conversion necessary:
let mut ct = [0u8; LIGHTSABER_CIPHERTEXT_LEN];
let ss1 = pk.encapsulate_in_place(&mut rng, &mut ct);
let slice_containing_ct = ct.as_slice();
// Deserializing is also straightforward
assert_eq!(slice_containing_ct.len(), LIGHTSABER_CIPHERTEXT_LEN);
let receiver_ct: &LightsaberCiphertext = slice_containing_ct.try_into().unwrap();
// Use the secret key to decapsulate the ciphertext
let ss2 = sk.decapsulate(receiver_ct);
// Check the shared secrets are equal. NOTE is not a constant-time check (ie not secure). We
// only do this for testing purposes.
assert_eq!(ss1.as_bytes(), ss2.as_bytes());
println!("KEM ran successfully");
We have implemented benchmarks for key generation, encapsulation, and decapsulation for all variants. Simply run cargo bench
.
Licensed under either of
- Apache License, Version 2.0, (LICENSE-APACHE)
- MIT license (LICENSE-MIT)
at your option.