Home
last modified time | relevance | path

Searched refs:dice_chain_entries (Results 1 – 1 of 1) sorted by relevance

/system/authgraph/core/src/
Dkey.rs540 Some(dice_chain_entries) => { in validate()
544 subj_pub_key_list.try_reserve(dice_chain_entries.len())?; in validate()
545 for (i, dice_chain_entry) in dice_chain_entries.iter().enumerate() { in validate()
599 let mut dice_chain_entries = Vec::<DiceChainEntry>::new(); in from_cbor_value() localVariable
601 dice_chain_entries.try_reserve(array.len() - 2).map_err(|_| CoseError::EncodeFailed)?; in from_cbor_value()
605 dice_chain_entries.push(dice_chain_entry); in from_cbor_value()
607 dice_chain_entries.reverse(); in from_cbor_value()
608 Some(dice_chain_entries) in from_cbor_value()
644 if let Some(dice_chain_entries) = self.dice_cert_chain { in to_cbor_value()
645 let len = dice_chain_entries.len(); in to_cbor_value()
[all …]