Add the following to your Leiningen’s project.clj:
[net.tbt-post/zlib-tiny "0.2.3"];; ZLib Example
(bytes->str
(force-byte-array
(inflate
(deflate
(str->bytes "test it!")))))
(-> "test it!"
str->bytes
deflate
inflate
force-byte-array
bytes->str);; GZip Example
(bytes->str
(gunzip
(gzip
(str->bytes "test it!"))))
(-> "test it!"
str->bytes
gzip
gunzip
bytes->str);; CRC32 example
(crc32 (.getBytes "123456789"))
=> 3421780262Copyright © 2017-2018
Distributed under the Apache License v 2.0