Searched refs:value_to_bytes (Results 1 – 3 of 3) sorted by relevance
/packages/modules/Virtualization/service_vm/comm/src/ |
D | csr.rs | 20 use cbor_util::{cbor_value_type, value_to_bytes}; 58 signed_csr_payload: value_to_bytes(arr.remove(1), "signed_csr_payload")?, in from_cbor_slice() 59 dice_cert_chain: value_to_bytes(arr.remove(0), "dice_cert_chain")?, in from_cbor_slice() 97 challenge: value_to_bytes(arr.remove(1), "challenge")?, in from_cbor_slice() 98 public_key: value_to_bytes(arr.remove(0), "public_key")?, in from_cbor_slice()
|
/packages/modules/Virtualization/service_vm/requests/src/ |
D | dice.rs | 23 value_to_byte_array, value_to_bytes, value_to_map, value_to_num, value_to_text, 323 let subject_public_key = value_to_bytes(value, "subject_public_key")?; in from_slice() 339 let config_descriptor = value_to_bytes(value, "config_descriptor")?; in from_slice() 447 builder.code_hash(value_to_bytes(value, "SubComponent code_hash")?)? in try_from() 450 builder.authority_hash(value_to_bytes(value, "SubComponent authority_hash")?)? in try_from()
|
/packages/modules/Virtualization/libs/cborutil/src/ |
D | lib.rs | 80 let arr = value_to_bytes(v, context)?; 88 pub fn value_to_bytes(v: Value, context: &'static str) -> Result<Vec<u8>> { in value_to_bytes() function
|