Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save junqueira/173866635f97212dc0edfe8a2dc3932d to your computer and use it in GitHub Desktop.
Save junqueira/173866635f97212dc0edfe8a2dc3932d to your computer and use it in GitHub Desktop.
Scala - Base64 encode/decode
// Base64 encode
val text = "This is plaintext."
val bytesEncoded = java.util.Base64.getEncoder.encode(text.getBytes())
// Base64 decode
val textDecoded = new String(java.util.Base64.getDecoder.decode(bytesEncoded))
println(textDecoded)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment