pub type Base64Padded = Base<64, true, true, false, Rfc4648>;
Expand description
Base64
encoding with padding (=
) enabled, using LUT decoding.
Ensures encoded output length is always a multiple of 4 characters.
Aliased Type§
struct Base64Padded { /* private fields */ }
Implementations
Source§impl<const PAD: bool, const CASE: bool> Base<64, true, PAD, CASE, Rfc4648>
impl<const PAD: bool, const CASE: bool> Base<64, true, PAD, CASE, Rfc4648>
Sourcepub const fn encoded_len(input_len: usize) -> usize
pub const fn encoded_len(input_len: usize) -> usize
Returns the required output buffer size for encoding input_len
bytes.
Sourcepub const fn encoded_len_padded(input_len: usize) -> usize
pub const fn encoded_len_padded(input_len: usize) -> usize
Returns the required output buffer size for encoding input_len
bytes.
Sourcepub const fn decoded_len(input_len: usize) -> usize
pub const fn decoded_len(input_len: usize) -> usize
Returns the required output buffer size for decoding input_len
Base32 characters.
Sourcepub const fn decoded_len_stripped(input: &[u8]) -> usize
pub const fn decoded_len_stripped(input: &[u8]) -> usize
Returns the required output buffer size for decoding input_len
Base32 characters.
Strips the padding. Otherwise decoded_len
will calculate for the worst case.
Sourcepub const fn decode_from_slice(input: &[u8], output: &mut [u8]) -> Option<usize> ⓘ
pub const fn decode_from_slice(input: &[u8], output: &mut [u8]) -> Option<usize> ⓘ
Decodes input
into output
, returning the number of bytes written.
Uses a LUT when DEC_TABLE = true
, otherwise falls back to linear search.
Returns None
if it finds an invalid byte.
§Panics
Panics if output
is too small.
Source§impl<const RADIX: usize, const LUT: bool, const PAD: bool, const CASE: bool, CODE> Base<RADIX, LUT, PAD, CASE, CODE>
§misc. methods
impl<const RADIX: usize, const LUT: bool, const PAD: bool, const CASE: bool, CODE> Base<RADIX, LUT, PAD, CASE, CODE>
§misc. methods
Sourcepub const fn with_radix<const NEW_RADIX: usize>(
self,
) -> Base<NEW_RADIX, LUT, PAD, CASE, CODE>
pub const fn with_radix<const NEW_RADIX: usize>( self, ) -> Base<NEW_RADIX, LUT, PAD, CASE, CODE>
Change the radix while keeping everything else the same.
Sourcepub const fn with_lut<const NEW_LUT: bool>(
self,
) -> Base<RADIX, NEW_LUT, PAD, CASE, CODE>
pub const fn with_lut<const NEW_LUT: bool>( self, ) -> Base<RADIX, NEW_LUT, PAD, CASE, CODE>
Toggle LUT usage while keeping everything else the same.
Sourcepub const fn with_pad<const NEW_PAD: bool>(
self,
) -> Base<RADIX, LUT, NEW_PAD, CASE, CODE>
pub const fn with_pad<const NEW_PAD: bool>( self, ) -> Base<RADIX, LUT, NEW_PAD, CASE, CODE>
Toggle padding while keeping everything else the same.
Sourcepub const fn with_case<const NEW_CASE: bool>(
self,
) -> Base<RADIX, LUT, PAD, NEW_CASE, CODE>
pub const fn with_case<const NEW_CASE: bool>( self, ) -> Base<RADIX, LUT, PAD, NEW_CASE, CODE>
Change the case sensitivity while keeping everything else the same.
Sourcepub const fn with_encoding<NewCode>(
self,
) -> Base<RADIX, LUT, PAD, CASE, NewCode>
pub const fn with_encoding<NewCode>( self, ) -> Base<RADIX, LUT, PAD, CASE, NewCode>
Change the encoding scheme while keeping everything else the same.