Module fast32::base64

source ·
Expand description

Base64 functions and constants for specific encodings

Structs

  • Hold a specific no padding base64 encoding and decoding map pair, with functions to do encoding + decoding
  • Hold a specific padded base64 encoding and decoding map pair, with functions to do encoding + decoding

Constants

Functions

  • Capacity needed in dest Vec<u8> to decode this byte array – without padding!
  • Capacity needed in dest Vec<u8> to encode this byte array – without padding!
  • Capacity required in a Vec<u8> to encode this u64
  • Capacity required in a Vec<u8> to encode this u128
  • Decode byte array with given decoding, into a Vec<u8>
  • Decode byte array with given decoding, into an existing Vec<u8>
  • Decode byte array with given decoding, into a u64
  • Decode byte array with given decoding, into a u128
  • Decode byte array with given decoding, into a Uuid
  • Encode byte array with given encoding, into a String
  • Encode byte array with given encoding, into an existing Vec<u8>
  • Encode u64 with given encoding, into a String
  • Encode u64 with given encoding, into an existing Vec<u8>
  • Encode u128 with given encoding, into a String
  • Encode u128 with given encoding, into an existing Vec<u8>
  • Encode Uuid with given encoding, into a String
  • Encode Uuid with given encoding, into an existing Vec<u8>