nodejs中的十六进制到字符串和字符串到十六进制的转换

问题描述 投票:1回答:1

我需要使用nodejs 8将数据转换为String到Hex,然后再从Hex转换为String

从Hex到String解码时遇到问题

转换string into hex的代码

function stringToHex(str)
{
    const buf = Buffer.from(str, 'utf8');
    return buf.toString('hex');
}

转换hex into string的代码

function hexToString(str)
{
    const buf = new Buffer(str, 'hex');
    return buf.toString('utf8');
}

我有字符串dailyfile.host

编码输出:3162316637526b62784a5a37697a45796c656d465643747a4a505a6f59774641534c75714733544b4446553d

解码输出:1b1f7RkbxJZ7izEylemFVCtzJPZoYwFASLuqG3TKDFU=

所需的解码输出:dailyfile.host

node.js string encoding buffer
1个回答
1
投票

您还需要使用Buffer.from()进行解码。考虑编写一个高阶函数来减少重复代码的数量:

const convert = (from, to) => str => Buffer.from(str, from).toString(to)
const utf8ToHex = convert('utf8', 'hex')
const hexToUtf8 = convert('hex', 'utf8')

hexToUtf8(utf8ToHex('dailyfile.host')) === 'dailyfile.host'
© www.soinside.com 2019 - 2024. All rights reserved.