Type Alias Base32Padded

Source
pub type Base32Padded = Base<32, true, true, false, Rfc4648>;
Expand description

Base32 encoding with padding (=) enabled, using LUT decoding.

Padding ensures the encoded length is always a multiple of 8 characters

Aliased Type§

struct Base32Padded { /* private fields */ }

Implementations

Source§

impl<const PAD: bool, const CASE: bool> Base<32, true, PAD, CASE, Rfc4648>

Source

pub const fn encoded_len(input_len: usize) -> usize

Returns the required output buffer size for encoding input_len bytes.

Source

pub const fn encoded_len_padded(input_len: usize) -> usize

Returns the required output buffer size for encoding input_len bytes.

Source

pub const fn decoded_len(input_len: usize) -> usize

Returns the required output buffer size for decoding input_len Base32 characters.

Source

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.

Source

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

pub const fn encode_to_slice(input: &[u8], output: &mut [u8]) -> usize

Encodes input into output, returning the number of bytes written.

§Panics

Panics if output is too small.

Source§

impl<const PAD: bool, const CASE: bool> Base<32, true, PAD, CASE, Rfc4648>

Source

pub fn decode(input: &[u8]) -> Option<Vec<u8>>

Available on crate feature alloc only.

Decodes input into a Vec<u8>, returns None if invalid characters are found.

Source

pub fn encode(input: &[u8]) -> String

Available on crate feature alloc only.

Encodes input into a String.

Source§

impl<const RADIX: usize, const LUT: bool, const PAD: bool, const CASE: bool, CODE> Base<RADIX, LUT, PAD, CASE, CODE>

§misc. methods

Source

pub const fn new() -> Self

Returns a new Base with the chosen generics.

Source

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.

Source

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.

Source

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.

Source

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.

Source

pub const fn with_encoding<NewCode>( self, ) -> Base<RADIX, LUT, PAD, CASE, NewCode>

Change the encoding scheme while keeping everything else the same.

Trait Implementations

Source§

impl<const RADIX: usize, const LUT: bool, const PAD: bool, const CASE: bool, CODE: Clone> Clone for Base<RADIX, LUT, PAD, CASE, CODE>

Source§

fn clone(&self) -> Base<RADIX, LUT, PAD, CASE, CODE>

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<const RADIX: usize, const LUT: bool, const PAD: bool, const CASE: bool, CODE> ConstDefault for Base<RADIX, LUT, PAD, CASE, CODE>

Source§

const DEFAULT: Self

Returns the compile-time “default value” for a type.
Source§

impl<const RADIX: usize, const LUT: bool, const PAD: bool, const CASE: bool, CODE: Debug> Debug for Base<RADIX, LUT, PAD, CASE, CODE>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<const RADIX: usize, const LUT: bool, const PAD: bool, const CASE: bool, CODE> Default for Base<RADIX, LUT, PAD, CASE, CODE>

Source§

fn default() -> Self

Returns the “default value” for a type. Read more
Source§

impl<const RADIX: usize, const LUT: bool, const PAD: bool, const CASE: bool, CODE: Copy> Copy for Base<RADIX, LUT, PAD, CASE, CODE>