Encodes bytes as URL-safe base64 without padding.
String base64UrlNoPadding(List<int> bytes) { return base64UrlEncode(bytes).replaceAll('=', ''); }