Skip to content

Instantly share code, notes, and snippets.

@rotaliator
Created October 17, 2023 09:45
Show Gist options
  • Save rotaliator/a1a7b8b56ba17896dfc6567e7e97f291 to your computer and use it in GitHub Desktop.
Save rotaliator/a1a7b8b56ba17896dfc6567e7e97f291 to your computer and use it in GitHub Desktop.
base64 encode clojure
(import '(java.util Base64))
(defn b64encode [to-encode]
(.encode (Base64/getEncoder) (.getBytes to-encode)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment