Home
last modified time | relevance | path

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

/aosp_15_r20/external/rust/android-crates-io/crates/ring/src/aead/
Dquic.rs31 enum KeyInner { enum
146 fn aes_init_128(key: &[u8], cpu_features: cpu::Features) -> Result<KeyInner, error::Unspecified> { in aes_init_128()
151 fn aes_init_256(key: &[u8], cpu_features: cpu::Features) -> Result<KeyInner, error::Unspecified> { in aes_init_256()
156 fn aes_new_mask(key: &KeyInner, sample: Sample) -> [u8; 5] { in aes_new_mask()
173 fn chacha20_init(key: &[u8], cpu_features: cpu::Features) -> Result<KeyInner, error::Unspecified> { in chacha20_init()
181 fn chacha20_new_mask(key: &KeyInner, sample: Sample) -> [u8; 5] { in chacha20_new_mask()
Daes_gcm.rs49 fn init_128(key: &[u8], cpu_features: cpu::Features) -> Result<aead::KeyInner, error::Unspecified> { in init_128()
53 fn init_256(key: &[u8], cpu_features: cpu::Features) -> Result<aead::KeyInner, error::Unspecified> { in init_256()
61 ) -> Result<aead::KeyInner, error::Unspecified> { in init()
69 fn aes_gcm_seal(key: &aead::KeyInner, nonce: Nonce, aad: Aad<&[u8]>, in_out: &mut [u8]) -> Tag { in aes_gcm_seal()
141 key: &aead::KeyInner, in aes_gcm_open()
Dchacha20_poly1305.rs40 ) -> Result<aead::KeyInner, error::Unspecified> { in chacha20_poly1305_init()
49 key: &aead::KeyInner, in chacha20_poly1305_seal()
131 key: &aead::KeyInner, in chacha20_poly1305_open()
/aosp_15_r20/external/rust/android-crates-io/crates/ring/src/
Daead.rs121 enum KeyInner { enum