Lines Matching refs:Value
25 use ciborium::value::Value;
83 mut client_vm_dice_chain: Vec<Value>, in validate_signatures_and_parse_dice_chain() argument
257 if curve_type != &Value::from(iana::EllipticCurve::Ed25519.to_i64()) { in verify()
300 value: Value, in validate_cose_signature_and_extract_payload() argument
317 let entries = value_to_map(Value::from_slice(data)?, "DiceChainEntryPayload")?; in from_slice()
358 sub_components: Option<Value>,
363 let value = Value::from_slice(data); in from_slice()
404 sub_components: OnceCell<Value>,
412 fn sub_components(&mut self, sub_components: Value) -> Result<()> { in sub_components()
431 impl TryFrom<Value> for SubComponent {
434 fn try_from(value: Value) -> Result<Self> { in try_from()
496 fn to_mode(value: Value) -> Result<DiceMode> { in to_mode()
502 Value::Bytes(bytes) => { in to_mode()
509 Value::Integer(i) => i, in to_mode()