Skip to main content

confium_daemon/methods/
aead.rs

1//! AEAD methods: `aead_create`, `aead_encrypt_update`, `aead_decrypt_update`, `aead_finalize`.
2//!
3//! Skeleton handlers pending per-connection handle management.
4
5use crate::pending_method;
6
7pending_method!(
8    aead_create,
9    "aead_create",
10    "requires per-connection handle management (pending)"
11);
12pending_method!(
13    aead_encrypt_update,
14    "aead_encrypt_update",
15    "requires per-connection handle management (pending)"
16);
17pending_method!(
18    aead_decrypt_update,
19    "aead_decrypt_update",
20    "requires per-connection handle management (pending)"
21);
22pending_method!(
23    aead_finalize,
24    "aead_finalize",
25    "requires per-connection handle management (pending)"
26);