confium_daemon/methods/kdf.rs
1//! KDF methods: `kdf_create`, `kdf_derive`.
2//!
3//! Skeleton handlers pending per-connection handle management.
4
5use crate::pending_method;
6
7pending_method!(
8 kdf_create,
9 "kdf_create",
10 "requires per-connection handle management (pending)"
11);
12pending_method!(
13 kdf_derive,
14 "kdf_derive",
15 "requires per-connection handle management (pending)"
16);