谁能将此功能从python转换为javascript?

时间:2019-07-12 08:37:56

标签: javascript python-2.7 authentication sha256

我在python中有一个脚本,该脚本需要加盐并使用以下命令返回证明 sha256。

我不太了解javascript或任何库。

import sys
from hashlib import sha256

def generate_proof(salt):
    secret_salt =  SECRET + salt
    hexadecimal = secret_salt.decode('hex')
    proof = sha256(hexadecimal).hexdigest()
    return proof

有人可以翻译或解释一下如何将此方法转换为javascript吗?

我认为我最大的问题是在JS中找到sha256等效库。

1 个答案:

答案 0 :(得分:0)

//  node.js
const filename = process.argv[2];
const crypto = require('crypto');
const fs = require('fs');

const hash = crypto.createHash('sha256');

const input = fs.createReadStream(filename);
input.on('readable', () => {
  // Only one element is going to be produced by the
  // hash stream.
  const data = input.read();
  if (data)
    hash.update(data);
  else {
    console.log(`${hash.digest('hex')} ${filename}`);
  }
});