Lines Matching refs:aes
9 crypto::{self, aes, rsa, KeyMaterial, OpaqueOr},
258 self.imp.aes.generate_key(&mut *self.imp.rng, variant, params)? in generate_key_material()
466 self.imp.aes, in finish_keyblob_creation()
537 aes::Key::Aes256(unmasked_transport_key.try_into().map_err(|_e| { in import_wrapped_key()
547 if iv_len != aes::GCM_NONCE_SIZE { in import_wrapped_key()
552 aes::GCM_NONCE_SIZE in import_wrapped_key()
557 12 => crypto::aes::GcmMode::GcmTag12 { in import_wrapped_key()
561 13 => crypto::aes::GcmMode::GcmTag13 { in import_wrapped_key()
565 14 => crypto::aes::GcmMode::GcmTag14 { in import_wrapped_key()
569 15 => crypto::aes::GcmMode::GcmTag15 { in import_wrapped_key()
573 16 => crypto::aes::GcmMode::GcmTag16 { in import_wrapped_key()
588 let mut op = self.imp.aes.begin_aead( in import_wrapped_key()
762 self.imp.aes, in upgrade_key()