use candid::Principal;
use ic_agent::{Agent, Certificate, hash_tree::HashTree};
#[derive(Clone, Debug, Eq, PartialEq)]
pub enum CertifiedDataError {
Authentication {
reason: String,
},
Invalid {
reason: String,
},
}
pub fn authenticate_canister_hash_tree(
agent: &Agent,
canister: &Principal,
encoded_certificate: &[u8],
encoded_hash_tree: &[u8],
certified_data_owner: &str,
) -> Result<HashTree<Vec<u8>>, CertifiedDataError> {
let certificate: Certificate = serde_cbor::from_slice(encoded_certificate)
.map_err(|error| invalid_certified_data(format!("certificate CBOR is invalid: {error}")))?;
agent
.verify(&certificate, *canister)
.map_err(|error| CertifiedDataError::Authentication {
reason: error.to_string(),
})?;
verify_canister_hash_tree(
&certificate,
canister,
encoded_hash_tree,
certified_data_owner,
)
}
pub fn verify_canister_hash_tree(
certificate: &Certificate,
canister: &Principal,
encoded_hash_tree: &[u8],
certified_data_owner: &str,
) -> Result<HashTree<Vec<u8>>, CertifiedDataError> {
let hash_tree: HashTree<Vec<u8>> = serde_cbor::from_slice(encoded_hash_tree)
.map_err(|error| invalid_certified_data(format!("hash-tree CBOR is invalid: {error}")))?;
let certified_data_path = [
b"canister".as_slice(),
canister.as_slice(),
b"certified_data".as_slice(),
];
let certified_data =
ic_agent::lookup_value(certificate, certified_data_path).map_err(|error| {
invalid_certified_data(format!(
"certificate does not prove the {certified_data_owner} certified_data value: {error}"
))
})?;
if certified_data != hash_tree.digest() {
return Err(invalid_certified_data(format!(
"hash-tree digest does not match the {certified_data_owner} certified_data value"
)));
}
Ok(hash_tree)
}
fn invalid_certified_data(reason: impl Into<String>) -> CertifiedDataError {
CertifiedDataError::Invalid {
reason: reason.into(),
}
}