Home
last modified time | relevance | path

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

/aosp_15_r20/external/open-dice/dpe-rs/src/
H A Dcrypto.rs17 use crate::byte_array_wrapper;
23 byte_array_wrapper!(MacKey, HASH_SIZE, "MAC key");
24 byte_array_wrapper!(EncryptionKey, ENCRYPTION_KEY_SIZE, "encryption key");
25 byte_array_wrapper!(DhPublicKey, DH_PUBLIC_KEY_SIZE, "DH public key");
26 byte_array_wrapper!(DhPrivateKey, DH_PRIVATE_KEY_SIZE, "DH private key");
27 byte_array_wrapper!(Hash, HASH_SIZE, "hash");
28 byte_array_wrapper!(
33 byte_array_wrapper!(
38 byte_array_wrapper!(
43 byte_array_wrapper!(
H A Dmemory.rs24 macro_rules! byte_array_wrapper { macro