btoa与atob

48 阅读1分钟

在浏览器中atob进行base64加密,btoa解密 nodejs中解密

function btoa(str) {
    return new Buffer(str).toString('base64')
}