一、内置函数

内置函数:btoa
let value = 'hello';
console.log(btoa(value));

在这里插入图片描述

内置函数:atob
let value = 'aGVsbG8=';
console.log(atob(value));

在这里插入图片描述

二、借助第三方库实现,例如CryptoJS

const CryptoJS = require("crypto-js");
let value = "hello";
let trans = CryptoJS.enc.Utf8.parse(value);
let encrypted = CryptoJS.enc.Base64.stringify(trans);
console.log(encrypted)

//自己编写一套Base64编码和解码算法

function Base64(){
	this.encode = function(val){
		//编码逻辑
		return val
	}
	this.decode = function(val){
		//解码逻辑
		return val
	}
}
encrypt = new Base64();
console.log(encrypt.encode("encode"))
Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐