Expand description
Functions for converting data in GenericBinaryArray
such as StringArray
to/from base64 encoded strings
Constants§
- BASE64_
STANDARD - A GeneralPurpose engine using the alphabet::STANDARD base64 alphabet and PAD config.
- BASE64_
STANDARD_ NO_ PAD - A GeneralPurpose engine using the alphabet::STANDARD base64 alphabet and NO_PAD config.
- BASE64_
URL_ SAFE - A GeneralPurpose engine using the alphabet::URL_SAFE base64 alphabet and PAD config.
- BASE64_
URL_ SAFE_ NO_ PAD - A GeneralPurpose engine using the alphabet::URL_SAFE base64 alphabet and NO_PAD config.
Traits§
- Engine
- An
Engine
provides low-level encoding and decoding operations that all other higher-level parts of the API use. Users of the library will generally not need to implement this.
Functions§
- b64_
decode - Base64 decode each element of
array
with the providedEngine
- b64_
encode - Bas64 encode each element of
array
with the providedEngine