与加密的 randomBytes 异或

XOR with crypto's randomBytes

我想创建一个主密钥,其中我对 3 个随机密钥(使用 crypto.randomBytes 生成)进行 XOR。

A,B,C = crypto.randomBytes(32)
MASTER_KEY = A ^ B ^ C;

我不确定如何在 Javascript 中完成这项工作。 randomBytes returns 一个缓冲区。我不确定是否必须对其执行 .toString() 或仅将 XOR 作为缓冲区执行?

应该这样做:

const BUF_LEN = 32
const result = Buffer.alloc(BUF_LEN)

for (let i = 0; i < BUF_LEN; i++) {
  const [a, b, c] = [A.readUInt8(i), B.readUInt8(i), C.readUInt8(i)]
  result.writeUInt8(a ^ b ^ c, i)
}

console.log(result.toString('hex'))