We can directly require the HRTB on `for<'r> TryFrom<&'r [u8]>`. Eliminates needless to_vec.
231 lines
7.5 KiB
Rust
231 lines
7.5 KiB
Rust
// Copyright (c) Facebook, Inc. and its affiliates.
|
|
//
|
|
// This source code is licensed under the MIT license found in the
|
|
// LICENSE file in the root directory of this source tree.
|
|
|
|
use crate::{
|
|
ciphersuite::CipherSuite,
|
|
envelope::Envelope,
|
|
group::Group,
|
|
key_exchange::{
|
|
traits::{KeyExchange, ToBytes},
|
|
tripledh::{TripleDH, NONCE_LEN},
|
|
},
|
|
keypair::{KeyPair, SizedBytes, X25519KeyPair},
|
|
opaque::*,
|
|
};
|
|
|
|
use curve25519_dalek::ristretto::RistrettoPoint;
|
|
use generic_array::typenum::Unsigned;
|
|
use proptest::{collection::vec, prelude::*};
|
|
use rand_core::{OsRng, RngCore};
|
|
|
|
use sha2::{Digest, Sha256};
|
|
use std::convert::TryFrom;
|
|
|
|
struct Default;
|
|
impl CipherSuite for Default {
|
|
type Group = RistrettoPoint;
|
|
type KeyFormat = crate::keypair::X25519KeyPair;
|
|
type KeyExchange = TripleDH;
|
|
type Hash = sha2::Sha256;
|
|
type SlowHash = crate::slow_hash::NoOpHash;
|
|
}
|
|
|
|
fn random_ristretto_point() -> RistrettoPoint {
|
|
let mut rng = OsRng;
|
|
let mut random_bits = [0u8; 64];
|
|
rng.fill_bytes(&mut random_bits);
|
|
|
|
// This is because RistrettoPoint is on an obsolete sha2 version
|
|
let mut bits = [0u8; 64];
|
|
let mut hasher = sha2::Sha512::new();
|
|
hasher.update(&random_bits[..]);
|
|
bits.copy_from_slice(&hasher.finalize());
|
|
|
|
RistrettoPoint::from_uniform_bytes(&bits)
|
|
}
|
|
|
|
#[test]
|
|
fn client_registration_roundtrip() {
|
|
let pw = b"hunter2";
|
|
let mut rng = OsRng;
|
|
let sc = <RistrettoPoint as Group>::random_scalar(&mut rng);
|
|
// serialization order: scalar, password
|
|
let bytes: Vec<u8> = [&sc.as_bytes()[..], &pw[..]].concat();
|
|
let reg = ClientRegistration::<Default>::try_from(&bytes[..]).unwrap();
|
|
let reg_bytes = reg.to_bytes();
|
|
assert_eq!(reg_bytes, bytes);
|
|
}
|
|
|
|
#[test]
|
|
fn server_registration_roundtrip() {
|
|
// If we don't have envelope and client_pk, the server registration just
|
|
// contains the prf key
|
|
let mut rng = OsRng;
|
|
let sc = <RistrettoPoint as Group>::random_scalar(&mut rng);
|
|
let mut oprf_bytes: Vec<u8> = vec![];
|
|
oprf_bytes.extend_from_slice(sc.as_bytes());
|
|
let reg = ServerRegistration::<Default>::try_from(&oprf_bytes[..]).unwrap();
|
|
let reg_bytes = reg.to_bytes();
|
|
assert_eq!(reg_bytes, oprf_bytes);
|
|
// If we do have envelope and client pk, the server registration contains
|
|
// the whole kit
|
|
let key_len =
|
|
<<<Default as CipherSuite>::KeyFormat as KeyPair>::Repr as SizedBytes>::Len::to_usize();
|
|
let envelope_size = key_len + Envelope::<sha2::Sha256>::additional_size();
|
|
let mut mock_envelope_bytes = vec![0u8; envelope_size];
|
|
rng.fill_bytes(&mut mock_envelope_bytes);
|
|
println!("{}", mock_envelope_bytes.len());
|
|
let mock_client_kp = Default::generate_random_keypair(&mut rng).unwrap();
|
|
// serialization order: scalar, public key, envelope
|
|
let mut bytes = Vec::<u8>::new();
|
|
bytes.extend_from_slice(sc.as_bytes());
|
|
bytes.extend_from_slice(&mock_client_kp.public().to_arr());
|
|
bytes.extend_from_slice(&mock_envelope_bytes);
|
|
let reg = ServerRegistration::<Default>::try_from(&bytes[..]).unwrap();
|
|
let reg_bytes = reg.to_bytes();
|
|
assert_eq!(reg_bytes, bytes);
|
|
}
|
|
|
|
#[test]
|
|
fn register_first_message_roundtrip() {
|
|
let pt = random_ristretto_point();
|
|
let pt_bytes = pt.to_arr();
|
|
let r1 = RegisterFirstMessage::<RistrettoPoint>::try_from(pt_bytes.as_slice()).unwrap();
|
|
let r1_bytes = r1.to_bytes();
|
|
assert_eq!(pt_bytes, r1_bytes);
|
|
}
|
|
|
|
#[test]
|
|
fn register_second_message_roundtrip() {
|
|
let pt = random_ristretto_point();
|
|
let pt_bytes = pt.to_arr();
|
|
|
|
let message = pt_bytes.to_vec();
|
|
let r2 = RegisterSecondMessage::<RistrettoPoint>::try_from(&message[..]).unwrap();
|
|
let r2_bytes = r2.to_bytes();
|
|
assert_eq!(message, r2_bytes);
|
|
}
|
|
|
|
#[test]
|
|
fn register_third_message_roundtrip() {
|
|
let mut rng = OsRng;
|
|
let skp = Default::generate_random_keypair(&mut rng).unwrap();
|
|
let pubkey_bytes = skp.public().to_arr();
|
|
|
|
let mut key = [0u8; 32];
|
|
rng.fill_bytes(&mut key);
|
|
|
|
let mut msg = [0u8; 32];
|
|
rng.fill_bytes(&mut msg);
|
|
|
|
let (ciphertext, _) =
|
|
Envelope::<sha2::Sha256>::seal(&key, &msg, &pubkey_bytes, &mut rng).unwrap();
|
|
|
|
let message: Vec<u8> = [&ciphertext.to_bytes(), &pubkey_bytes[..]].concat();
|
|
let r3 = RegisterThirdMessage::<X25519KeyPair, sha2::Sha256>::try_from(&message[..]).unwrap();
|
|
let r3_bytes = r3.to_bytes();
|
|
assert_eq!(message, r3_bytes);
|
|
}
|
|
|
|
#[test]
|
|
fn client_login_roundtrip() {
|
|
let pw = b"hunter2";
|
|
let mut rng = OsRng;
|
|
let sc = <RistrettoPoint as Group>::random_scalar(&mut rng);
|
|
|
|
let client_e_kp = Default::generate_random_keypair(&mut rng).unwrap();
|
|
let mut client_nonce = [0u8; NONCE_LEN];
|
|
rng.fill_bytes(&mut client_nonce);
|
|
|
|
let l1_data = [&sc.to_bytes()[..], &client_nonce, client_e_kp.public()].concat();
|
|
let mut hasher = Sha256::new();
|
|
hasher.update(l1_data);
|
|
let hashed_l1 = hasher.finalize();
|
|
|
|
// serialization order: scalar, password, ke1_state
|
|
let bytes: Vec<u8> = [
|
|
&sc.as_bytes()[..],
|
|
&pw[..],
|
|
client_e_kp.public(),
|
|
&client_nonce,
|
|
hashed_l1.as_slice(),
|
|
]
|
|
.concat();
|
|
let reg = ClientLogin::<Default>::try_from(&bytes[..]).unwrap();
|
|
let reg_bytes = reg.to_bytes();
|
|
assert_eq!(reg_bytes, bytes);
|
|
}
|
|
|
|
#[test]
|
|
fn login_first_message_roundtrip() {
|
|
let mut rng = OsRng;
|
|
|
|
let client_e_kp = Default::generate_random_keypair(&mut rng).unwrap();
|
|
let mut client_nonce = [0u8; NONCE_LEN];
|
|
rng.fill_bytes(&mut client_nonce);
|
|
|
|
let ke1m: Vec<u8> = [&client_nonce[..], &client_e_kp.public()].concat();
|
|
let reg = <TripleDH as KeyExchange<sha2::Sha256, crate::keypair::X25519KeyPair>>::KE1Message::try_from(
|
|
&ke1m[..],
|
|
)
|
|
.unwrap();
|
|
let reg_bytes = reg.to_bytes();
|
|
assert_eq!(reg_bytes, ke1m);
|
|
}
|
|
|
|
proptest! {
|
|
|
|
#[test]
|
|
fn test_nocrash_register_first_message(bytes in vec(any::<u8>(), 0..200)) {
|
|
RegisterFirstMessage::<RistrettoPoint>::try_from(&bytes[..]).map_or(true, |_| true);
|
|
}
|
|
|
|
#[test]
|
|
fn test_nocrash_register_second_message(bytes in vec(any::<u8>(), 0..200)) {
|
|
RegisterSecondMessage::<RistrettoPoint>::try_from(&bytes[..]).map_or(true, |_| true);
|
|
}
|
|
|
|
#[test]
|
|
fn test_nocrash_register_third_message(bytes in vec(any::<u8>(), 0..200)) {
|
|
RegisterThirdMessage::<crate::keypair::X25519KeyPair, sha2::Sha512>::try_from(&bytes[..]).map_or(true, |_| true);
|
|
}
|
|
|
|
#[test]
|
|
fn test_nocrash_login_first_message(bytes in vec(any::<u8>(), 0..500)) {
|
|
LoginFirstMessage::<Default>::try_from(&bytes[..]).map_or(true, |_| true);
|
|
}
|
|
|
|
#[test]
|
|
fn test_nocrash_login_second_message(bytes in vec(any::<u8>(), 0..500)) {
|
|
LoginSecondMessage::<Default>::try_from(&bytes[..]).map_or(true, |_| true);
|
|
}
|
|
|
|
#[test]
|
|
fn test_nocrash_login_third_message(bytes in vec(any::<u8>(), 0..500)) {
|
|
LoginThirdMessage::<Default>::try_from(&bytes[..]).map_or(true, |_| true);
|
|
}
|
|
|
|
#[test]
|
|
fn test_nocrash_client_registration(bytes in vec(any::<u8>(), 0..700)) {
|
|
ClientRegistration::<Default>::try_from(&bytes[..]).map_or(true, |_| true);
|
|
}
|
|
|
|
#[test]
|
|
fn test_nocrash_server_registration(bytes in vec(any::<u8>(), 0..700)) {
|
|
ServerRegistration::<Default>::try_from(&bytes[..]).map_or(true, |_| true);
|
|
}
|
|
|
|
#[test]
|
|
fn test_nocrash_client_login(bytes in vec(any::<u8>(), 0..700)) {
|
|
ClientLogin::<Default>::try_from(&bytes[..]).map_or(true, |_| true);
|
|
}
|
|
|
|
#[test]
|
|
fn test_nocrash_server_login(bytes in vec(any::<u8>(), 0..700)) {
|
|
ServerLogin::<Default>::try_from(&bytes[..]).map_or(true, |_| true);
|
|
}
|
|
|
|
}
|