//! Cross-cutting helpers for fitting a value's
//! [`orderable_bytes::ToOrderableBytes`] encoding into a fixed 8-byte
//! plaintext block. The 8-byte width is consumed by 8-byte block
//! ORE/OPE schemes regardless of the underlying cipher.
/// Zero-extend orderable bytes (≤ 8 bytes) into a fixed `[u8; 8]` block
/// by left-padding with zeros — short encodings sit in the low bytes of
/// the resulting block, matching the legacy `value as uN as u64`
/// widening. Lex order of the orderable bytes survives the widening, so
/// the resulting block's lex order matches the underlying value's
/// natural order.
pub
/// Same widening as [`pad_orderable_to_8`] but reinterprets the
/// resulting block as a big-endian `u64`. Used by call sites that need
/// a numeric `u64` plaintext (e.g. `OreTerm::Number`).
pub