Logo

Programming-Idioms

This language bar is your friend. Select your favorite languages!
  • Kotlin

Idiom #235 Decode base64

Assign to byte array data the bytes represented by the base64 string s, as specified by RFC 4648.

import java.util.Base64
String(Base64.getDecoder().decode(s))

Unfortunately, at the time of the writing, I couldn't find kotlin's decoder that uses base64 however ASCII and UTF decoders are natively available
using System;
byte[] bytes = Convert.FromBase64String(s);

New implementation...
< >
programming-idioms.org