Expand description
Enums§
- Engine
Kind - The base64 encoding engine kind to use when encoding/decoding data.
- Error
- Errors that can occur while encoding/decoding base64.
Functions§
- decode
- Decode base64 string to bytes.
- decode_
slice - Decode base64 string to bytes into a pre-allocated buffer.
- decoded_
len_ estimate - Returns a conservative estimate of the decoded size of
encoded_len
base64 symbols (rounded up to the next group of 3 decoded bytes). - encode
- Encode bytes to base64 string.
- encode_
slice - Encode bytes to base64 string into a pre-allocated buffer.
- encoded_
len - Calculate the base64 encoded length for a given input length, optionally including any appropriate padding bytes.