[go: up one dir, main page]

Module base64

Module base64 

Source
Expand description

Base64 encoding and decoding functions.

Modules§

option
Serialization helpers for optional fields.

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.