Last active
January 4, 2018 21:56
-
-
Save mangosmoothie/45f76bed977ebca3c54d87617c70e2a6 to your computer and use it in GitHub Desktop.
Clojure encode Base64
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;; requires >= jdk 1.8 | |
(defn encode-base64 [to-encode] | |
(.encodeToString (java.util.Base64/getEncoder) (.getBytes to-encode))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment