Home
last modified time | relevance | path

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

/external/rust/beto-rust/nearby/presence/xts_aes/src/
Dlib.rs97 pub struct XtsDecrypter<A: Aes<Key = K::BlockCipherKey>, K: XtsKey> { struct
98 main_decryption_cipher: A::DecryptCipher,
99 tweak_encryption_cipher: A::EncryptCipher,
100 _marker: PhantomData<K>,
187 impl<A: Aes<Key = K::BlockCipherKey>, K: XtsKey> XtsDecrypter<A, K> { implementation
297 impl<A: Aes<Key = K::BlockCipherKey>, K: XtsKey + TweakableBlockCipherKey>