pub trait KmsAeadEncryption<Aad> {
fn encrypt_value<'life0, 'life1, 'async_trait>(
&'life0 self,
aad: Aad,
secret_value: &'life1 SecretValue
) -> Pin<Box<dyn Future<Output = KmsAeadResult<EncryptedSecretValue>> + Send + 'async_trait>>
where
'life0: 'async_trait,
'life1: 'async_trait,
Self: 'async_trait;
fn decrypt_value<'life0, 'life1, 'async_trait>(
&'life0 self,
aad: Aad,
secret_value: &'life1 EncryptedSecretValue
) -> Pin<Box<dyn Future<Output = KmsAeadResult<SecretValue>> + Send + 'async_trait>>
where
'life0: 'async_trait,
'life1: 'async_trait,
Self: 'async_trait;
}