blob: 773c63321515f6c018c66db1aeab78e60b17b54f [file] [log] [blame] [edit]
//! Test methods to confirm basic functionality of trait implementations.
use authgraph_core::error::Error;
use authgraph_core::key::{
AesKey, EcSignKey, EcVerifyKey, EcdhSecret, HmacKey, Key, Nonce12, PseudoRandKey,
};
use authgraph_core::keyexchange;
use authgraph_core::traits::{AesGcm, EcDh, EcDsa, Hkdf, Hmac, MonotonicClock, Rng, Sha256};
use authgraph_wire::ErrorCode;
use coset::{cbor::Value, iana, CoseKeyBuilder};
/// Test basic [`Rng`] functionality.
pub fn test_rng<R: Rng>(rng: &mut R) {
let mut nonce1 = [0; 16];
let mut nonce2 = [0; 16];
rng.fill_bytes(&mut nonce1);
assert_ne!(nonce1, nonce2, "random value is all zeroes!");
rng.fill_bytes(&mut nonce2);
assert_ne!(nonce1, nonce2, "two random values match!");
}
/// Test basic [`MonotonicClock`] functionality.
pub fn test_clock<C: MonotonicClock>(clock: &C) {
let t1 = clock.now();
let t2 = clock.now();
assert!(t2.0 >= t1.0);
std::thread::sleep(std::time::Duration::from_millis(400));
let t3 = clock.now();
assert!(t3.0 > (t1.0 + 200));
}
/// Test basic [`Sha256`] functionality.
pub fn test_sha256<S: Sha256>(digest: &S) {
let tests: &[(&'static [u8], &'static str)] = &[
(b"", "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855"),
(b"abc", "ba7816bf8f01cfea414140de5dae2223b00361a396177a9cb410ff61f20015ad"),
];
for (i, (data, want)) in tests.iter().enumerate() {
let got = digest.compute_sha256(data).unwrap();
assert_eq!(hex::encode(got), *want, "incorrect for case {i}")
}
}
/// Test basic [`Hmac`] functionality.
pub fn test_hmac<H: Hmac>(hmac: &H) {
struct TestCase {
key: &'static str, // 32 bytes, hex-encoded
data: &'static [u8],
want: &'static str, // 32 bytes, hex-encoded
}
let tests = [
TestCase {
key: "000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f",
data: b"Hello",
want: "0adc968519e7e86e9fde625df7037baeab85ea5001583b93b9f576258bf7b20c",
},
TestCase {
key: "000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f",
data: &[],
want: "d38b42096d80f45f826b44a9d5607de72496a415d3f4a1a8c88e3bb9da8dc1cb",
},
];
for (i, test) in tests.iter().enumerate() {
let key = hex::decode(test.key).unwrap();
let key = HmacKey(key.try_into().unwrap());
let got = hmac.compute_hmac(&key, test.data).unwrap();
assert_eq!(hex::encode(&got), test.want, "incorrect for case {i}");
}
}
/// Test basic HKDF functionality.
pub fn test_hkdf<H: Hkdf>(h: &H) {
struct TestCase {
ikm: &'static str,
salt: &'static str,
info: &'static str,
want: &'static str,
}
let tests = [
// RFC 5869 section A.1
TestCase {
ikm: "0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b",
salt: "000102030405060708090a0b0c",
info: "f0f1f2f3f4f5f6f7f8f9",
want: "3cb25f25faacd57a90434f64d0362f2a2d2d0a90cf1a5a4c5db02d56ecc4c5bf",
},
// RFC 5869 section A.2
TestCase {
ikm: concat!(
"000102030405060708090a0b0c0d0e0f",
"101112131415161718191a1b1c1d1e1f",
"202122232425262728292a2b2c2d2e2f",
"303132333435363738393a3b3c3d3e3f",
"404142434445464748494a4b4c4d4e4f",
),
salt: concat!(
"606162636465666768696a6b6c6d6e6f",
"707172737475767778797a7b7c7d7e7f",
"808182838485868788898a8b8c8d8e8f",
"909192939495969798999a9b9c9d9e9f",
"a0a1a2a3a4a5a6a7a8a9aaabacadaeaf",
),
info: concat!(
"b0b1b2b3b4b5b6b7b8b9babbbcbdbebf",
"c0c1c2c3c4c5c6c7c8c9cacbcccdcecf",
"d0d1d2d3d4d5d6d7d8d9dadbdcdddedf",
"e0e1e2e3e4e5e6e7e8e9eaebecedeeef",
"f0f1f2f3f4f5f6f7f8f9fafbfcfdfeff",
),
want: "b11e398dc80327a1c8e7f78c596a49344f012eda2d4efad8a050cc4c19afa97c",
},
TestCase {
ikm: "0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b",
salt: "",
info: "",
want: "8da4e775a563c18f715f802a063c5a31b8a11f5c5ee1879ec3454e5f3c738d2d",
},
];
for (i, test) in tests.iter().enumerate() {
let ikm = hex::decode(test.ikm).unwrap();
let salt = hex::decode(test.salt).unwrap();
let info = hex::decode(test.info).unwrap();
let got = hkdf(h, &salt, &ikm, &info).unwrap().0;
assert_eq!(hex::encode(got), test.want, "incorrect for case {i}");
}
}
fn hkdf(hkdf: &dyn Hkdf, salt: &[u8], ikm: &[u8], info: &[u8]) -> Result<PseudoRandKey, Error> {
let ikm = EcdhSecret(ikm.to_vec());
let prk = hkdf.extract(salt, &ikm)?;
hkdf.expand(&prk, info)
}
/// Simple test that AES key generation is random.
pub fn test_aes_gcm_keygen<A: AesGcm, R: Rng>(aes: &A, rng: &mut R) {
let key1 = aes.generate_key(rng).unwrap();
let key2 = aes.generate_key(rng).unwrap();
assert_ne!(key1.0, key2.0, "identical generated AES keys!");
}
/// Test basic AES-GCM round-trip functionality.
pub fn test_aes_gcm_roundtrip<A: AesGcm, R: Rng>(aes: &A, rng: &mut R) {
let key = aes.generate_key(rng).unwrap();
let msg = b"The Magic Words are Squeamish Ossifrage";
let aad = b"the aad";
let nonce = Nonce12(*b"1243567890ab");
let ct = aes.encrypt(&key, msg, aad, &nonce).unwrap();
let pt = aes.decrypt(&key, &ct, aad, &nonce).unwrap();
assert_eq!(pt, msg);
// Modifying any of the inputs should induce failure.
let bad_key = aes.generate_key(rng).unwrap();
let bad_aad = b"the AAD";
let bad_nonce = Nonce12(*b"ab1243567890");
let mut bad_ct = ct.clone();
bad_ct[0] ^= 0x01;
assert!(aes.decrypt(&bad_key, &ct, aad, &nonce).is_err());
assert!(aes.decrypt(&key, &bad_ct, aad, &nonce).is_err());
assert!(aes.decrypt(&key, &ct, bad_aad, &nonce).is_err());
assert!(aes.decrypt(&key, &ct, aad, &bad_nonce).is_err());
}
/// Test AES-GCM against test vectors.
pub fn test_aes_gcm<A: AesGcm>(aes: &A) {
struct TestCase {
key: &'static str,
iv: &'static str,
aad: &'static str,
msg: &'static str,
ct: &'static str,
tag: &'static str,
}
// Test vectors from Wycheproof aes_gcm_test.json.
let aes_gcm_tests = [
TestCase {
// tcId: 73
key: "92ace3e348cd821092cd921aa3546374299ab46209691bc28b8752d17f123c20",
iv: "00112233445566778899aabb",
aad: "00000000ffffffff",
msg: "00010203040506070809",
ct: "e27abdd2d2a53d2f136b",
tag: "9a4a2579529301bcfb71c78d4060f52c",
},
TestCase {
// tcId: 74
key: "29d3a44f8723dc640239100c365423a312934ac80239212ac3df3421a2098123",
iv: "00112233445566778899aabb",
aad: "aabbccddeeff",
msg: "",
ct: "",
tag: "2a7d77fa526b8250cb296078926b5020",
},
TestCase {
// tcId: 75
key: "80ba3192c803ce965ea371d5ff073cf0f43b6a2ab576b208426e11409c09b9b0",
iv: "4da5bf8dfd5852c1ea12379d",
aad: "",
msg: "",
ct: "",
tag: "4771a7c404a472966cea8f73c8bfe17a",
},
TestCase {
// tcId: 76
key: "cc56b680552eb75008f5484b4cb803fa5063ebd6eab91f6ab6aef4916a766273",
iv: "99e23ec48985bccdeeab60f1",
aad: "",
msg: "2a",
ct: "06",
tag: "633c1e9703ef744ffffb40edf9d14355",
},
TestCase {
// tcId: 77
key: "51e4bf2bad92b7aff1a4bc05550ba81df4b96fabf41c12c7b00e60e48db7e152",
iv: "4f07afedfdc3b6c2361823d3",
aad: "",
msg: "be3308f72a2c6aed",
ct: "cf332a12fdee800b",
tag: "602e8d7c4799d62c140c9bb834876b09",
},
TestCase {
// tcId: 78
key: "67119627bd988eda906219e08c0d0d779a07d208ce8a4fe0709af755eeec6dcb",
iv: "68ab7fdbf61901dad461d23c",
aad: "",
msg: "51f8c1f731ea14acdb210a6d973e07",
ct: "43fc101bff4b32bfadd3daf57a590e",
tag: "ec04aacb7148a8b8be44cb7eaf4efa69",
},
];
for (i, test) in aes_gcm_tests.iter().enumerate() {
let key = AesKey(hex::decode(test.key).unwrap().try_into().unwrap());
let nonce = Nonce12(hex::decode(test.iv).unwrap().try_into().unwrap());
let aad = hex::decode(test.aad).unwrap();
let msg = hex::decode(test.msg).unwrap();
let want_hex = test.ct.to_owned() + test.tag;
let got = aes.encrypt(&key, &msg, &aad, &nonce).unwrap();
assert_eq!(hex::encode(&got), want_hex, "incorrect for case {i}");
let got_pt = aes.decrypt(&key, &got, &aad, &nonce).unwrap();
assert_eq!(hex::encode(got_pt), test.msg, "incorrect decrypt for case {i}");
}
}
/// Test `EcDh` impl for ECDH.
pub fn test_ecdh<E: EcDh>(ecdh: &E) {
let key1 = ecdh.generate_key().unwrap();
let key2 = ecdh.generate_key().unwrap();
let secret12 = ecdh.compute_shared_secret(&key1.priv_key, &key2.pub_key).unwrap();
let secret21 = ecdh.compute_shared_secret(&key2.priv_key, &key1.pub_key).unwrap();
assert_eq!(secret12.0, secret21.0);
}
/// Test `EcDsa` impl for verify.
pub fn test_ecdsa<E: EcDsa>(ecdsa: &E) {
let ed25519_key = coset::CoseKeyBuilder::new_okp_key()
.param(iana::OkpKeyParameter::Crv as i64, Value::from(iana::EllipticCurve::Ed25519 as u64))
.param(
iana::OkpKeyParameter::X as i64,
Value::from(
hex::decode("7d4d0e7f6153a69b6242b522abbee685fda4420f8834b108c3bdae369ef549fa")
.unwrap(),
),
)
.algorithm(coset::iana::Algorithm::EdDSA)
.build();
let p256_key = CoseKeyBuilder::new_ec2_pub_key(
iana::EllipticCurve::P_256,
hex::decode("2927b10512bae3eddcfe467828128bad2903269919f7086069c8c4df6c732838").unwrap(),
hex::decode("c7787964eaac00e5921fb1498a60f4606766b3d9685001558d1a974e7341513e").unwrap(),
)
.algorithm(iana::Algorithm::ES256)
.build();
let p384_key = CoseKeyBuilder::new_ec2_pub_key(
iana::EllipticCurve::P_384,
hex::decode("2da57dda1089276a543f9ffdac0bff0d976cad71eb7280e7d9bfd9fee4bdb2f20f47ff888274389772d98cc5752138aa").unwrap(),
hex::decode("4b6d054d69dcf3e25ec49df870715e34883b1836197d76f8ad962e78f6571bbc7407b0d6091f9e4d88f014274406174f").unwrap(),
)
.algorithm(iana::Algorithm::ES384)
.build();
struct TestCase {
key: EcVerifyKey,
msg: &'static str, // hex
sig: &'static str, // hex
}
let tests = [
// Wycheproof: eddsa_test.json tcId=5
TestCase {
key: EcVerifyKey::Ed25519(ed25519_key),
msg: "313233343030",
sig: "657c1492402ab5ce03e2c3a7f0384d051b9cf3570f1207fc78c1bcc98c281c2bf0cf5b3a289976458a1be6277a5055545253b45b07dcc1abd96c8b989c00f301",
},
// Wycheproof: ecdsa_secp256r1_sha256_test.json tcId=3
TestCase {
key: EcVerifyKey::P256(p256_key),
msg: "313233343030",
sig: "304502202ba3a8be6b94d5ec80a6d9d1190a436effe50d85a1eee859b8cc6af9bd5c2e18022100b329f479a2bbd0a5c384ee1493b1f5186a87139cac5df4087c134b49156847db",
},
// Wycheproof: ecdsa_secp384r1_sha384_test.json tcId=3
TestCase {
key: EcVerifyKey::P384(p384_key),
msg: "313233343030",
sig: "3065023012b30abef6b5476fe6b612ae557c0425661e26b44b1bfe19daf2ca28e3113083ba8e4ae4cc45a0320abd3394f1c548d7023100e7bf25603e2d07076ff30b7a2abec473da8b11c572b35fc631991d5de62ddca7525aaba89325dfd04fecc47bff426f82",
},
];
for (i, test) in tests.iter().enumerate() {
let sig = hex::decode(test.sig).unwrap();
let msg = hex::decode(test.msg).unwrap();
assert!(ecdsa.verify_signature(&test.key, &msg, &sig).is_ok(), "failed for case {i}");
// A modified message should not verify.
let mut bad_msg = msg.clone();
bad_msg[0] ^= 0x01;
assert!(
ecdsa.verify_signature(&test.key, &bad_msg, &sig).is_err(),
"unexpected success for case {i}"
);
// A modified signature should not verify.
let mut bad_sig = sig;
bad_sig[0] ^= 0x01;
assert!(
ecdsa.verify_signature(&test.key, &msg, &bad_sig).is_err(),
"unexpected success for case {i}"
);
}
}
/// Test EdDSA signing and verification for Ed25519.
pub fn test_ed25519_round_trip<E: EcDsa>(ecdsa: &E) {
// Wycheproof: eddsa_test.json
let ed25519_pub_key = coset::CoseKeyBuilder::new_okp_key()
.param(iana::OkpKeyParameter::Crv as i64, Value::from(iana::EllipticCurve::Ed25519 as u64))
.param(
iana::OkpKeyParameter::X as i64,
Value::from(
hex::decode("7d4d0e7f6153a69b6242b522abbee685fda4420f8834b108c3bdae369ef549fa")
.unwrap(),
),
)
.algorithm(coset::iana::Algorithm::EdDSA)
.build();
let ed25519_verify_key = EcVerifyKey::Ed25519(ed25519_pub_key);
let ed25519_sign_key = EcSignKey::Ed25519(
hex::decode("add4bb8103785baf9ac534258e8aaf65f5f1adb5ef5f3df19bb80ab989c4d64b")
.unwrap()
.try_into()
.unwrap(),
);
test_ecdsa_round_trip(ecdsa, &ed25519_verify_key, &ed25519_sign_key)
}
// It's not possible to include a generic test for `EcDsa::sign` with NIST curves because the
// format of the `EcSignKey` is implementation-dependent. The following tests are therefore
// specific to implementations (such as the reference implementation) which store private key
// material for NIST EC curves in the form of DER-encoded `ECPrivateKey` structures.
/// Test EdDSA signing and verification for P-256.
pub fn test_p256_round_trip<E: EcDsa>(ecdsa: &E) {
// Generated with: openssl ecparam --name prime256v1 -genkey -noout -out p256-privkey.pem
//
// Contents (der2ascii -pem -i p256-privkey.pem):
//
// SEQUENCE {
// INTEGER { 1 }
// OCTET_STRING { `0733c93e22240ba783739f9e2bd4b4065bfcecac9268362587dc814da5b84080` }
// [0] {
// # secp256r1
// OBJECT_IDENTIFIER { 1.2.840.10045.3.1.7 }
// }
// [1] {
// BIT_STRING { `00` `04`
// `2b31afcfab1aba1f8850d7ecfa235e14d60a1ef5b2a75b93ccaa4322de094477`
// `21ba560a040bab8c922edd32a279e9d3ac991f1507d4b4beded5fd80298b7cee`
// }
// }
// }
let p256_priv_key = hex::decode("307702010104200733c93e22240ba783739f9e2bd4b4065bfcecac9268362587dc814da5b84080a00a06082a8648ce3d030107a144034200042b31afcfab1aba1f8850d7ecfa235e14d60a1ef5b2a75b93ccaa4322de09447721ba560a040bab8c922edd32a279e9d3ac991f1507d4b4beded5fd80298b7cee").unwrap();
let p256_pub_key = CoseKeyBuilder::new_ec2_pub_key(
iana::EllipticCurve::P_256,
hex::decode("2b31afcfab1aba1f8850d7ecfa235e14d60a1ef5b2a75b93ccaa4322de094477").unwrap(),
hex::decode("21ba560a040bab8c922edd32a279e9d3ac991f1507d4b4beded5fd80298b7cee").unwrap(),
)
.algorithm(iana::Algorithm::ES256)
.build();
test_ecdsa_round_trip(ecdsa, &EcVerifyKey::P256(p256_pub_key), &EcSignKey::P256(p256_priv_key))
}
/// Test EdDSA signing and verification for P-384.
pub fn test_p384_round_trip<E: EcDsa>(ecdsa: &E) {
// Generated with: openssl ecparam --name secp384r1 -genkey -noout -out p384-privkey.pem
//
// Contents (der2ascii -pem -i p384-privkey.pem):
//
// SEQUENCE {
// INTEGER { 1 }
// OCTET_STRING { `81a9d9e43e47dbbf3e7e4e9e06d467b1b126603969bf80f0ade1e1aea9ed534884b81d86ece0bbd41d541bf6d22f6be2` }
// [0] {
// # secp384r1
// OBJECT_IDENTIFIER { 1.3.132.0.34 }
// }
// [1] {
// BIT_STRING { `00` `04`
// `fdf3f076a6e98047baf68a44d319f0200a03c4807eb0e869db88e1c9758ba96647fecbe0456c475feeb67021e053de93`
// `478ad58e972d52af0ea5911fe24f82448e9c073263aaa49117c451e787eced645796e50b24ee2c632a6c77e6d430ad01`
// }
// }
// }
let p384_priv_key = hex::decode("3081a4020101043081a9d9e43e47dbbf3e7e4e9e06d467b1b126603969bf80f0ade1e1aea9ed534884b81d86ece0bbd41d541bf6d22f6be2a00706052b81040022a16403620004fdf3f076a6e98047baf68a44d319f0200a03c4807eb0e869db88e1c9758ba96647fecbe0456c475feeb67021e053de93478ad58e972d52af0ea5911fe24f82448e9c073263aaa49117c451e787eced645796e50b24ee2c632a6c77e6d430ad01").unwrap();
let p384_pub_key = CoseKeyBuilder::new_ec2_pub_key(
iana::EllipticCurve::P_384,
hex::decode("fdf3f076a6e98047baf68a44d319f0200a03c4807eb0e869db88e1c9758ba96647fecbe0456c475feeb67021e053de93").unwrap(),
hex::decode("478ad58e972d52af0ea5911fe24f82448e9c073263aaa49117c451e787eced645796e50b24ee2c632a6c77e6d430ad01").unwrap(),
)
.algorithm(iana::Algorithm::ES384)
.build();
test_ecdsa_round_trip(ecdsa, &EcVerifyKey::P384(p384_pub_key), &EcSignKey::P384(p384_priv_key))
}
fn test_ecdsa_round_trip<E: EcDsa>(ecdsa: &E, verify_key: &EcVerifyKey, sign_key: &EcSignKey) {
let msg = b"This is the message";
let sig = ecdsa.sign(sign_key, msg).unwrap();
assert!(ecdsa.verify_signature(verify_key, msg, &sig).is_ok());
// A modified message should not verify.
let mut bad_msg = *msg;
bad_msg[0] ^= 0x01;
assert!(ecdsa.verify_signature(verify_key, &bad_msg, &sig).is_err());
// A modified signature should not verify.
let mut bad_sig = sig;
bad_sig[0] ^= 0x01;
assert!(ecdsa.verify_signature(verify_key, msg, &bad_sig).is_err());
}
/// Test `create` method of key exchange protocol
pub fn test_key_exchange_create(source: &mut keyexchange::AuthGraphParticipant) {
let create_result = source.create();
assert!(create_result.is_ok());
// TODO: Add more tests on the values returned from `create` (some of these tests may
// need to be done in `libauthgraph_boringssl_test`)
// 1. dh_key is not None,
// 2. dh_key->pub key is in CoseKey encoding (e..g purpose)
// 3. dh_key->priv_key arc can be decrypted from the pbk from the AgDevice, the IV attached
// in the unprotected headers, nonce for key exchange and the payload type = SecretKey
// attached in the protected headers
// 5. identity decodes to a CBOR vector and the second element is a bstr of
// CoseKey
// 6. nonce is same as the nonce attached in the protected header of the arc in
// #3 above
// 7. ECDH can be performed from the dh_key returned from this method
}
/// Test `init` method of key exchange protocol
pub fn test_key_exchange_init(
source: &mut keyexchange::AuthGraphParticipant,
sink: &mut keyexchange::AuthGraphParticipant,
) {
let keyexchange::SessionInitiationInfo {
ke_key: Key { pub_key: peer_ke_pub_key, .. },
identity: peer_identity,
nonce: peer_nonce,
version: peer_version,
} = source.create().unwrap();
let init_result =
sink.init(&peer_ke_pub_key.unwrap(), &peer_identity, &peer_nonce, peer_version);
assert!(init_result.is_ok())
// TODO: add more tests on init_result
}
/// Test `finish` method of key exchange protocol
pub fn test_key_exchange_finish(
source: &mut keyexchange::AuthGraphParticipant,
sink: &mut keyexchange::AuthGraphParticipant,
) {
let keyexchange::SessionInitiationInfo {
ke_key: Key { pub_key: p1_ke_pub_key, arc_from_pbk: p1_ke_priv_key_arc },
identity: p1_identity,
nonce: p1_nonce,
version: p1_version,
} = source.create().unwrap();
let keyexchange::KeInitResult {
session_init_info:
keyexchange::SessionInitiationInfo {
ke_key: Key { pub_key: p2_ke_pub_key, .. },
identity: p2_identity,
nonce: p2_nonce,
version: p2_version,
},
session_info: keyexchange::SessionInfo { session_id_signature: p2_signature, .. },
} = sink.init(p1_ke_pub_key.as_ref().unwrap(), &p1_identity, &p1_nonce, p1_version).unwrap();
let finish_result = source.finish(
&p2_ke_pub_key.unwrap(),
&p2_identity,
&p2_signature,
&p2_nonce,
p2_version,
Key { pub_key: p1_ke_pub_key, arc_from_pbk: p1_ke_priv_key_arc },
);
assert!(finish_result.is_ok())
// TODO: add more tests on finish_result
}
/// Test `authentication_complete` method of key exchange protocol
pub fn test_key_exchange_auth_complete(
source: &mut keyexchange::AuthGraphParticipant,
sink: &mut keyexchange::AuthGraphParticipant,
) {
let keyexchange::SessionInitiationInfo {
ke_key: Key { pub_key: p1_ke_pub_key, arc_from_pbk: p1_ke_priv_key_arc },
identity: p1_identity,
nonce: p1_nonce,
version: p1_version,
} = source.create().unwrap();
let keyexchange::KeInitResult {
session_init_info:
keyexchange::SessionInitiationInfo {
ke_key: Key { pub_key: p2_ke_pub_key, .. },
identity: p2_identity,
nonce: p2_nonce,
version: p2_version,
},
session_info:
keyexchange::SessionInfo {
shared_keys: p2_shared_keys,
session_id: p2_session_id,
session_id_signature: p2_signature,
},
} = sink.init(p1_ke_pub_key.as_ref().unwrap(), &p1_identity, &p1_nonce, p1_version).unwrap();
let keyexchange::SessionInfo {
shared_keys: _p1_shared_keys,
session_id: p1_session_id,
session_id_signature: p1_signature,
} = source
.finish(
&p2_ke_pub_key.unwrap(),
&p2_identity,
&p2_signature,
&p2_nonce,
p2_version,
Key { pub_key: p1_ke_pub_key, arc_from_pbk: p1_ke_priv_key_arc },
)
.unwrap();
let auth_complete_result = sink.authentication_complete(&p1_signature, p2_shared_keys);
assert!(auth_complete_result.is_ok());
assert_eq!(p1_session_id, p2_session_id)
// TODO: add more tests on finish_result, and encrypt/decrypt using the agreed keys
}
/// Verify that the key exchange protocol works when source's version is higher than sink's version
/// and that the negotiated version is sink's version
pub fn test_ke_with_newer_source(
source_newer: &mut keyexchange::AuthGraphParticipant,
sink: &mut keyexchange::AuthGraphParticipant,
) {
let source_version = source_newer.get_version();
let sink_version = sink.get_version();
assert!(source_version > sink_version);
let keyexchange::SessionInitiationInfo {
ke_key: Key { pub_key: p1_ke_pub_key, arc_from_pbk: p1_ke_priv_key_arc },
identity: p1_identity,
nonce: p1_nonce,
version: p1_version,
} = source_newer.create().unwrap();
let keyexchange::KeInitResult {
session_init_info:
keyexchange::SessionInitiationInfo {
ke_key: Key { pub_key: p2_ke_pub_key, .. },
identity: p2_identity,
nonce: p2_nonce,
version: p2_version,
},
session_info:
keyexchange::SessionInfo {
shared_keys: p2_shared_keys,
session_id: p2_session_id,
session_id_signature: p2_signature,
},
} = sink.init(p1_ke_pub_key.as_ref().unwrap(), &p1_identity, &p1_nonce, p1_version).unwrap();
assert_eq!(p2_version, sink_version);
let keyexchange::SessionInfo {
shared_keys: _p1_shared_keys,
session_id: p1_session_id,
session_id_signature: p1_signature,
} = source_newer
.finish(
&p2_ke_pub_key.unwrap(),
&p2_identity,
&p2_signature,
&p2_nonce,
p2_version,
Key { pub_key: p1_ke_pub_key, arc_from_pbk: p1_ke_priv_key_arc },
)
.unwrap();
let auth_complete_result = sink.authentication_complete(&p1_signature, p2_shared_keys);
assert!(auth_complete_result.is_ok());
assert_eq!(p1_session_id, p2_session_id)
}
/// Verify that the key exchange protocol works when sink's version is higher than sources's version
/// and that the negotiated version is source's version
pub fn test_ke_with_newer_sink(
source: &mut keyexchange::AuthGraphParticipant,
sink_newer: &mut keyexchange::AuthGraphParticipant,
) {
let source_version = source.get_version();
let sink_version = sink_newer.get_version();
assert!(sink_version > source_version);
let keyexchange::SessionInitiationInfo {
ke_key: Key { pub_key: p1_ke_pub_key, arc_from_pbk: p1_ke_priv_key_arc },
identity: p1_identity,
nonce: p1_nonce,
version: p1_version,
} = source.create().unwrap();
let keyexchange::KeInitResult {
session_init_info:
keyexchange::SessionInitiationInfo {
ke_key: Key { pub_key: p2_ke_pub_key, .. },
identity: p2_identity,
nonce: p2_nonce,
version: p2_version,
},
session_info:
keyexchange::SessionInfo {
shared_keys: p2_shared_keys,
session_id: p2_session_id,
session_id_signature: p2_signature,
},
} = sink_newer
.init(p1_ke_pub_key.as_ref().unwrap(), &p1_identity, &p1_nonce, p1_version)
.unwrap();
assert_eq!(p2_version, source_version);
let keyexchange::SessionInfo {
shared_keys: _p1_shared_keys,
session_id: p1_session_id,
session_id_signature: p1_signature,
} = source
.finish(
&p2_ke_pub_key.unwrap(),
&p2_identity,
&p2_signature,
&p2_nonce,
p2_version,
Key { pub_key: p1_ke_pub_key, arc_from_pbk: p1_ke_priv_key_arc },
)
.unwrap();
let auth_complete_result = sink_newer.authentication_complete(&p1_signature, p2_shared_keys);
assert!(auth_complete_result.is_ok());
assert_eq!(p1_session_id, p2_session_id)
}
/// Verify that the key exchange protocol prevents version downgrade attacks when both source and
/// sink have versions newer than version 1
pub fn test_ke_for_version_downgrade(
source: &mut keyexchange::AuthGraphParticipant,
sink: &mut keyexchange::AuthGraphParticipant,
) {
let source_version = source.get_version();
let sink_version = sink.get_version();
assert!(source_version > 1);
assert!(sink_version > 1);
let keyexchange::SessionInitiationInfo {
ke_key: Key { pub_key: p1_ke_pub_key, arc_from_pbk: p1_ke_priv_key_arc },
identity: p1_identity,
nonce: p1_nonce,
version: _p1_version,
} = source.create().unwrap();
let downgraded_version = 1;
let keyexchange::KeInitResult {
session_init_info:
keyexchange::SessionInitiationInfo {
ke_key: Key { pub_key: p2_ke_pub_key, .. },
identity: p2_identity,
nonce: p2_nonce,
version: p2_version,
},
session_info:
keyexchange::SessionInfo {
shared_keys: _p2_shared_keys,
session_id: _p2_session_id,
session_id_signature: p2_signature,
},
} = sink
.init(p1_ke_pub_key.as_ref().unwrap(), &p1_identity, &p1_nonce, downgraded_version)
.unwrap();
assert_eq!(p2_version, downgraded_version);
let finish_result = source.finish(
&p2_ke_pub_key.unwrap(),
&p2_identity,
&p2_signature,
&p2_nonce,
p2_version,
Key { pub_key: p1_ke_pub_key, arc_from_pbk: p1_ke_priv_key_arc },
);
// `finish` should fail with signature verification error
match finish_result {
Ok(_) => panic!("protocol downgrade prevention is broken"),
Err(e) => match e {
Error(ErrorCode::InvalidSignature, _) => {}
_ => panic!("wrong error on protocol downgrade"),
},
}
}
/// Verify that the key exchange protocol prevents replay attacks
pub fn test_ke_for_replay(
source: &mut keyexchange::AuthGraphParticipant,
sink: &mut keyexchange::AuthGraphParticipant,
) {
// Round 1 of the protocol
let keyexchange::SessionInitiationInfo {
ke_key: Key { pub_key: p1_ke_pub_key, arc_from_pbk: p1_ke_priv_key_arc },
identity: p1_identity,
nonce: p1_nonce,
version: p1_version,
} = source.create().unwrap();
let keyexchange::KeInitResult {
session_init_info:
keyexchange::SessionInitiationInfo {
ke_key: Key { pub_key: p2_ke_pub_key, .. },
identity: p2_identity,
nonce: p2_nonce,
version: p2_version,
},
session_info:
keyexchange::SessionInfo {
shared_keys: p2_shared_keys,
session_id: p2_session_id,
session_id_signature: p2_signature,
},
} = sink.init(p1_ke_pub_key.as_ref().unwrap(), &p1_identity, &p1_nonce, p1_version).unwrap();
let keyexchange::SessionInfo {
shared_keys: _p1_shared_keys,
session_id: p1_session_id,
session_id_signature: p1_signature,
} = source
.finish(
&p2_ke_pub_key.clone().unwrap(),
&p2_identity,
&p2_signature,
&p2_nonce,
p2_version,
Key { pub_key: p1_ke_pub_key.clone(), arc_from_pbk: p1_ke_priv_key_arc.clone() },
)
.unwrap();
let auth_complete_result = sink.authentication_complete(&p1_signature, p2_shared_keys.clone());
assert!(auth_complete_result.is_ok());
assert_eq!(p1_session_id, p2_session_id);
// An attacker may try to run the key exchange protocol again, but this time, they try to
// replay the inputs of the previous protocol run, ignoring the outputs of `create` and `init`
// of the existing protocol run. In such cases, `finish` and `authentication_complete` should
// fail as per the measures against replay attacks.
source.create().unwrap();
sink.init(p1_ke_pub_key.as_ref().unwrap(), &p1_identity, &p1_nonce, p1_version).unwrap();
let finish_result = source.finish(
&p2_ke_pub_key.unwrap(),
&p2_identity,
&p2_signature,
&p2_nonce,
p2_version,
Key { pub_key: p1_ke_pub_key, arc_from_pbk: p1_ke_priv_key_arc },
);
match finish_result {
Ok(_) => panic!("replay prevention is broken in finish"),
Err(e) if e.0 == ErrorCode::InvalidKeKey => {}
Err(e) => panic!("got error {e:?}, wanted ErrorCode::InvalidKeKey"),
}
let auth_complete_result = sink.authentication_complete(&p1_signature, p2_shared_keys);
match auth_complete_result {
Ok(_) => panic!("replay prevention is broken in authentication_complete"),
Err(e) if e.0 == ErrorCode::InvalidSharedKeyArcs => {}
Err(e) => panic!("got error {e:?}, wanted ErrorCode::InvalidSharedKeyArcs"),
}
}