base64顶层常量

Base64Codec const 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常量,可以使用顶层的base64Encodebase64Decode函数。

实现

const Base64Codec base64 = Base64Codec();