Package-level declarations

Types

Link copied to clipboard

Serializer for ByteArray values encoded as Base64.

Link copied to clipboard

Converts ByteArray into base64 encoded string due to serialization and decode base64 encoded string into bytes

Link copied to clipboard
open class Base64Serializer<T>(converterFrom: (T) -> String, converterTo: (String) -> T) : KSerializer<T>

A serializer that encodes values to Base64 strings and decodes them back. Uses custom conversion functions to transform between type T and string representation.

Link copied to clipboard

Serializer for String values encoded as Base64.