base64 最高级常量
一个 base64 编码器和解码器。
它使用默认的 base64 字母表进行编码,使用 base64 和 base64url 字母表进行解码,不允许无效字符且需要填充。
示例
var encoded = base64.encode([0x62, 0x6c, 0xc3, 0xa5, 0x62, 0xc3, 0xa6,
0x72, 0x67, 0x72, 0xc3, 0xb8, 0x64]);
var decoded = base64.decode("YmzDpWLDpnJncsO4ZAo=");
如果局部变量遮蔽了 base64 常量,可以使用顶级的 base64Encode 和 base64Decode 函数。
实现
const Base64Codec base64 = Base64Codec();