refactor: Rename to symm_encrypt_message()

This commit is contained in:
Hocuri
2025-08-16 18:54:57 +02:00
parent 9b49386bc8
commit f66f6f3e92
4 changed files with 10 additions and 11 deletions

View File

@@ -76,7 +76,7 @@ impl EncryptHelper {
mail_to_encrypt.clone().write_part(cursor).ok();
let ctext =
pgp::encrypt_symmetrically(raw_message, shared_secret, sign_key, compress).await?;
pgp::symm_encrypt_message(raw_message, shared_secret, sign_key, compress).await?;
Ok(ctext)
}