NodeJS Forge-将加密的字节字符串转换为十六进制字符数组

问题描述

我正在使用NodeJS-Forge使用公共密钥加密字符串。

var text = 'testingtext';
var pemPublicKey = "*******";
var publicKeyFromPem = forge.pki.publicKeyFromPem(pemPublicKey);

const options = {
    md: forge.md.sha256.create(),mgf1: {
        md: forge.md.sha1.create()
    }
}

var encrypted = publicKeyFromPem.encrypt(text,'RSAES-OAEP',options);
console.log(encrypted);

我得到的加密字符串如下字节字符串。

 ZIŸ0ÊQÁ@ìœÆ:Øê%       ÞÂÚÇìm,ÿ™hµÅÇ4­Ó¶/ çÎï_žå´Ï_rÓÆça:r¤—T{Zç{á£#ã?ݺh=ÝïW˜„HK²ù^Ǻè[áÔQQ€Ì„A¦¢R‡à*~`
éz©‹×„ÔDB™íFgèÞ$¯S®oE J

然后我需要获取十六进制字符串,然后转换为字符串格式。我正在使用下面的代码来获取该哈希字符串。

var buffer = forge.util.createBuffer(encrypted,'raw');
var hashstring = buffer.toHex().toString().replace(/,/g,'');
console.log(hashstring);

但是没有得到正确的结果。以下是客户端执行的步骤。

  1. 使用十六进制编码将加密的字节数据转换为字符数组。
  2. 将字符数组转换为String。

我不确定这是什么问题。

解决方法

当客户端请求一个十六进制字符串时,我将使用此函数将字节数组(“加密”)转换为字符串:

const pad = num => ("0"+num).slice(-2);
const times = `2020-09-02 02:22:14
2020-09-05 10:22:14
2020-09-03 06:22:14
2020-09-07 04:22:14
2020-09-02 11:22:14
2020-09-09 03:22:14
2020-09-03 10:22:14
2020-09-04 06:22:14
2020-09-02 07:22:14
2020-09-02 06:22:14
2020-09-02 10:22:14`.split("\n");

const hours = Array.from(Array(24).keys()).map(i => pad(++i)).filter(item => item%2===0)
//hours.push("00");// better change at the end
const schedule = hours.reduce((acc,hh) => {
  acc[`${hh}:00:00`] = times.filter(t => {
    const thh = t.match(/ (\d{2}):/)[1]*1
    const period = [+hh,+hh+2];
    return thh >= period[0] && thh < period[1];
  })
  return acc;
},{})
 console.log(schedule)

相关问答

错误1:Request method ‘DELETE‘ not supported 错误还原:...
错误1:启动docker镜像时报错:Error response from daemon:...
错误1:private field ‘xxx‘ is never assigned 按Alt...
报错如下,通过源不能下载,最后警告pip需升级版本 Requirem...