使用 JavaScript 处理 UTF-8 文本字符串或任意数据的 Base64 编解码




// 引入相关模块
const { TextEncoder, TextDecoder } = require('util');
const { createHash } = require('crypto');
 
// 将字符串转换为 UTF-8 编码的数据
function stringToUtf8Array(str) {
    const encoder = new TextEncoder(); // 创建文本编码器
    return encoder.encode(str); // 将字符串编码为UTF-8编码单元的数组
}
 
// 将 UTF-8 编码数据转换为字符串
function utf8ArrayToString(utf8) {
    const decoder = new TextDecoder(); // 创建文本解码器
    return decoder.decode(utf8); // 将UTF-8编码单元数组解码为字符串
}
 
// 对数据进行Base64编码
function base64Encode(data) {
    return Buffer.from(data).toString('base64'); // 使用Buffer对象转换为Base64字符串
}
 
// 对Base64字符串进行解码
function base64Decode(str) {
    return Buffer.from(str, 'base64'); // 使用Buffer对象从Base64字符串解码回原始数据
}
 
// 使用SHA-256算法计算Base64编码数据的哈希值
function hashData(data) {
    const hash = createHash('sha256'); // 创建SHA-256哈希对象
    hash.update(data); // 更新哈希对象的数据
    return hash.digest('base64'); // 生成哈希值并以Base64字符串形式返回
}
 
// 示例使用
const exampleString = "Hello, World!";
const utf8Data = stringToUtf8Array(exampleString);
const base64Encoded = base64Encode(utf8Data);
const base64Decoded = base64Decode(base64Encoded);
const hashedValue = hashData(base64Decoded);
 
console.log('Original String:', exampleString);
console.log('UTF-8 Array:', utf8Data);
console.log('Base64 Encoded:', base64Encoded);
console.log('Base64 Decoded:', utf8ArrayToString(base64Decoded));
console.log('Hashed Value:', hashedValue);

这段代码展示了如何在JavaScript中处理文本字符串的UTF-8编码、Base64编码以及数据的哈希计算。它首先将字符串转换为UTF-8编码的数组,然后将该数组编码为Base64字符串,并对其进行哈希处理。最后,它提供了相应的解码和反哈希过程,以便可以将Base64字符串转换回原始数据并验证哈希值。

评论已关闭

推荐阅读

DDPG 模型解析,附Pytorch完整代码
2024年11月24日
DQN 模型解析,附Pytorch完整代码
2024年11月24日
AIGC实战——Transformer模型
2024年12月01日
Socket TCP 和 UDP 编程基础(Python)
2024年11月30日
python , tcp , udp
如何使用 ChatGPT 进行学术润色?你需要这些指令
2024年12月01日
AI
最新 Python 调用 OpenAi 详细教程实现问答、图像合成、图像理解、语音合成、语音识别(详细教程)
2024年11月24日
ChatGPT 和 DALL·E 2 配合生成故事绘本
2024年12月01日
omegaconf,一个超强的 Python 库!
2024年11月24日
【视觉AIGC识别】误差特征、人脸伪造检测、其他类型假图检测
2024年12月01日
[超级详细]如何在深度学习训练模型过程中使用 GPU 加速
2024年11月29日
Python 物理引擎pymunk最完整教程
2024年11月27日
MediaPipe 人体姿态与手指关键点检测教程
2024年11月27日
深入了解 Taipy:Python 打造 Web 应用的全面教程
2024年11月26日
基于Transformer的时间序列预测模型
2024年11月25日
Python在金融大数据分析中的AI应用(股价分析、量化交易)实战
2024年11月25日
AIGC Gradio系列学习教程之Components
2024年12月01日
Python3 `asyncio` — 异步 I/O,事件循环和并发工具
2024年11月30日
llama-factory SFT系列教程:大模型在自定义数据集 LoRA 训练与部署
2024年12月01日
Python 多线程和多进程用法
2024年11月24日
Python socket详解,全网最全教程
2024年11月27日