confium_daemon/methods/
aead.rs1use 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);