//! Base64↔UUID conversion utilities.
//!
//! USSO uses URL-safe base64 encoding (without padding by default) for UUIDs
//! in token claims. These helpers convert between [`Uuid`] and base64 strings.
use ;
use Uuid;
/// Encode a [`Uuid`] as a URL-safe base64 string (with padding).
/// Encode a [`Uuid`] as a URL-safe base64 string without padding.
/// Decode a URL-safe base64 string into a [`Uuid`].