Expand description
Base64 encoding and decoding functions.
Functionsยง
- decode
- Decode a base64 encoded string using the standard base64 decoding scheme.
- decode_
url_ safe - Decode a base64url encoded string using the URL safe base64 decoding scheme. (base64url)
- deserialize
- Helper that can be used in a serde deserialize_with derive macro for struct fields that contain base64 encoded data.
- deserialize_
url_ safe - Helper that can be used in a serde deserialize_with derive macro for struct fields that contain base64 encoded data.
- encode
- Encode the input into a base64 string using the standard base64 encoding scheme.
- encode_
url_ safe - Encode the input into a base64 string using the URL safe base64 encoding scheme (base64url).
- serialize
- Helper that can be used in a serde serialize_with derive macro for struct fields that contain base64 encoded data.
- serialize_
url_ safe - Helper that can be used in a serde serialize_with derive macro for struct fields that contain base64 encoded data.