package util
- Alphabetic
- Public
- All
Type Members
-
trait
Base64StringEncoder extends StringEncoder
A utility for encoding strings and byte arrays to a MIME base64 string, and decoding from strings encoded in MIME base64 to byte arrays.
A utility for encoding strings and byte arrays to a MIME base64 string, and decoding from strings encoded in MIME base64 to byte arrays.
The encoding for strings is UTF-8.
-
trait
Base64UrlSafeStringEncoder extends StringEncoder
A utility for encoding strings and byte arrays to a URL-safe base64 string, and decoding from strings encoded in base64 to byte arrays.
A utility for encoding strings and byte arrays to a URL-safe base64 string, and decoding from strings encoded in base64 to byte arrays.
The encoding for strings is UTF-8.
-
trait
GZIPStringEncoder extends StringEncoder
A collection of utilities for encoding strings and byte arrays to and decoding from strings compressed from with gzip.
A collection of utilities for encoding strings and byte arrays to and decoding from strings compressed from with gzip.
This trait is thread-safe because there are no streams shared outside of method scope, and therefore no contention for shared byte arrays.
The encoding for strings is UTF-8.
gzipping inherently includes base64 encoding (the GZIP utilities from java will complain otherwise!)
- trait StringEncoder extends AnyRef
Value Members
- object Base64StringEncoder extends Base64StringEncoder
- object Base64UrlSafeStringEncoder extends Base64UrlSafeStringEncoder
- object GZIPStringEncoder extends GZIPStringEncoder
- object StringEncoder extends StringEncoder