This library is not meant to be used in actual projects. If you're looking for a Base64 encoder/decoder library, you'll need to look elsewhere.
This is a simple portfolio project implementing (what I considered to be) an interesting algorithm. Thanks for checking it out!
This library can currently encode only ASCII text, and makes no attempt at correctly handling unicode.
There is no provided jar for this project. In order to run it, it will need to be cloned and worked with via REPL.
- Check out the project using whatever Git tool.
lein repl
within the project's folder- Move into the
prtflo-clj-str-b64.core
namespace - You should now be able to use the
encode
anddecode
functions.
Limitations
- Input must be an ASCII-only string
(encode "Your input here")
Limitations
- Input must be a Base64-encoded string
(decode "WW91ciBpbnB1dCBoZXJl")