Skip to content

Instantly share code, notes, and snippets.

@scalactic
Created June 28, 2021 13:21
Show Gist options
  • Save scalactic/8b617308b2b8e807f784de97d641d4da to your computer and use it in GitHub Desktop.
Save scalactic/8b617308b2b8e807f784de97d641d4da to your computer and use it in GitHub Desktop.
Scala base64 encoder decoder
// Base64 encode
new String(java.util.Base64.getEncoder.encode("hello".getBytes()),java.nio.charset.StandardCharsets.UTF_8)
// Base64 decode
new String(java.util.Base64.getDecoder.decode("aGVsbG8=".getBytes()),java.nio.charset.StandardCharsets.UTF_8)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment