Home
last modified time | relevance | path

Searched defs:ConcatenatedKeyArray (Results 1 – 3 of 3) sorted by relevance

/aosp_15_r20/external/rust/beto-rust/nearby/presence/ldt_tbc/src/
Dlib.rs69 type ConcatenatedKeyArray: ConcatenatedKeyArray; typedef
75 fn concatenate_with(&self, other: &Self) -> Self::ConcatenatedKeyArray; in concatenate_with()
79 pub trait ConcatenatedKeyArray: Sized { trait
84 impl ConcatenatedKeyArray for [u8; 64] { impl
92 impl ConcatenatedKeyArray for [u8; 128] { impl
/aosp_15_r20/external/rust/beto-rust/nearby/presence/xts_aes/src/
Dlib.rs406 type ConcatenatedKeyArray = [u8; 64]; typedef
414 fn concatenate_with(&self, other: &Self) -> Self::ConcatenatedKeyArray { in concatenate_with()
471 type ConcatenatedKeyArray = [u8; 128]; typedef
479 fn concatenate_with(&self, other: &Self) -> Self::ConcatenatedKeyArray { in concatenate_with()
/aosp_15_r20/external/rust/beto-rust/nearby/presence/ldt/src/
Dlib.rs239 pub fn as_concatenated(&self) -> T::ConcatenatedKeyArray { in as_concatenated()