CryptoJS - Mã hoá Base64

Cập nhật ngày 25/04/2024
Lượt xem: 24
function base64_encode(str) {
    let encode = CryptoJS.enc.Utf8.parse(str);
    encode     = CryptoJS.enc.Base64.stringify(encode);

    return encode;
}

function base64_decode(str) {
    let decode = CryptoJS.enc.Base64.parse(str);
    decode     = CryptoJS.enc.Utf8.stringify(decode);

    return decode;
}