confium_daemon/methods/cipher.rs
1//! Cipher methods: `cipher_create`, `cipher_update`, `cipher_finalize`.
2//!
3//! Skeleton handlers. The core `Cipher` API requires a loaded provider
4//! and per-connection handle management; these handlers return an
5//! `Engine` error until the handle store is wired.
6
7use crate::pending_method;
8
9pending_method!(
10 cipher_create,
11 "cipher_create",
12 "requires per-connection handle management (pending)"
13);
14pending_method!(
15 cipher_update,
16 "cipher_update",
17 "requires per-connection handle management (pending)"
18);
19pending_method!(
20 cipher_finalize,
21 "cipher_finalize",
22 "requires per-connection handle management (pending)"
23);