Home
last modified time | relevance | path

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

/external/rust/beto-rust/nearby/presence/ldt_tbc/src/
Dlib.rs74 type ConcatenatedKeyArray: ConcatenatedKeyArray; typedef
80 fn concatenate_with(&self, other: &Self) -> Self::ConcatenatedKeyArray; in concatenate_with()
84 pub trait ConcatenatedKeyArray: Sized { interface
89 impl ConcatenatedKeyArray for [u8; 64] { impl
97 impl ConcatenatedKeyArray for [u8; 128] { impl
/external/rust/beto-rust/nearby/presence/xts_aes/src/
Dlib.rs388 type ConcatenatedKeyArray = [u8; 64]; typedef
399 fn concatenate_with(&self, other: &Self) -> Self::ConcatenatedKeyArray { in concatenate_with()
455 type ConcatenatedKeyArray = [u8; 128]; typedef
466 fn concatenate_with(&self, other: &Self) -> Self::ConcatenatedKeyArray { in concatenate_with()
/external/rust/beto-rust/nearby/presence/ldt/src/
Dlib.rs220 pub fn as_concatenated(&self) -> T::ConcatenatedKeyArray { in as_concatenated()