Decrypt a geohash msgpack payload (called from `geohash_index.rs`).
(
key: &nodedb_wal::crypto::WalEncryptionKey,
blob: &[u8],
)
| 73 | |
| 74 | /// Decrypt a geohash msgpack payload (called from `geohash_index.rs`). |
| 75 | pub(crate) fn decrypt_geohash_payload( |
| 76 | key: &nodedb_wal::crypto::WalEncryptionKey, |
| 77 | blob: &[u8], |
| 78 | ) -> Result<Vec<u8>, RTreeCheckpointError> { |
| 79 | decrypt_payload(key, blob) |
| 80 | } |
| 81 | |
| 82 | // ── Metadata types ───────────────────────────────────────────────────────── |
| 83 |
no test coverage detected