fszmq


Z85

Namespace: fszmq

Utilities for working with ZeroMQ Base-85 Encoding

Functions and values

Function or valueDescription
decode(data)
Signature: data:string -> byte []

Decodes ZeroMQ Base-85 encoded string to a binary block.

Note: the size of the string MUST be divisible be 5.

CompiledName: Decode

encode(data)
Signature: data:byte [] -> string

Encodes a binary block into a string using ZeroMQ Base-85 Encoding.

Note: the size of the binary block MUST be divisible be 4.

CompiledName: Encode

Fork me on GitHub