Skip to content

Instantly share code, notes, and snippets.

@mangosmoothie
Last active January 4, 2018 21:56
Show Gist options
  • Save mangosmoothie/45f76bed977ebca3c54d87617c70e2a6 to your computer and use it in GitHub Desktop.
Save mangosmoothie/45f76bed977ebca3c54d87617c70e2a6 to your computer and use it in GitHub Desktop.
Clojure encode Base64
;; 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