group-wbl/.venv/lib/python3.13/site-packages/chromadb/utils/messageid.py

9 lines
272 B
Python
Raw Normal View History

2026-01-09 09:48:03 +08:00
def int_to_bytes(int: int) -> bytes:
"""Convert int to a 24 byte big endian byte string"""
return int.to_bytes(24, "big")
def bytes_to_int(bytes: bytes) -> int:
"""Convert a 24 byte big endian byte string to an int"""
return int.from_bytes(bytes, "big")