pub const fn encode_into_constant_time(
output: &mut [u8],
data: &[u8],
alphabet: Alphabet,
) -> Result<(), EncodeError>Expand description
Constant-time base64 encoding. Processes all input data without secret-dependent branches or memory accesses, making it suitable for cryptographic applications.
Consumers may prefer the faster encode_into which dispatches to
a SIMD-accelerated path when available (non constant-time).