MCPcopy Create free account
hub / github.com/atomicdotdev/atomic / encode_session_todo_key

Function encode_session_todo_key

atomic-core/src/change/session.rs:457–464  ·  view source on GitHub ↗
(provenance_id: u64, todo_id: &str)

Source from the content-addressed store, hash-verified

455/// the B-tree) matches numeric order, enabling correct prefix range scans.
456#[inline]
457pub fn encode_session_todo_key(provenance_id: u64, todo_id: &str) -> [u8; 16] {
458 let hash = blake3::hash(todo_id.as_bytes());
459 let hash_bytes = hash.as_bytes();
460 let mut key = [0u8; 16];
461 key[0..8].copy_from_slice(&provenance_id.to_be_bytes());
462 key[8..16].copy_from_slice(&hash_bytes[0..8]);
463 key
464}
465
466/// Decode the `provenance_id` from a `SESSION_TODOS` key.
467///

Calls 2

hashFunction · 0.50
as_bytesMethod · 0.45