Logo

Programming-Idioms

  • Lua
  • Js

Idiom #234 Encode bytes to base64

Assign to the string s the standard base64 encoding of the byte array data, as specified by RFC 4648.

let s = btoa(data);

btoa should be read as "binary to ASCII"
using System;
string s = Convert.ToBase64String(data);

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