“Hashing di Node JS” Kode Jawaban

Node Crypto

const crypto = require('crypto');

const secret = 'abcdefg';
const hash = crypto.createHmac('sha256', secret)
                   .update('I love cupcakes')
                   .digest('hex');
console.log(hash);
// Prints:
//   c0fa1bc00531bd78ef38c628449c5102aeabd49b5dc3a2a516ea6ea959d6658e
Exuberant Echidna

Hashing di Node JS

require("crypto")
  .createHash("sha256")
  .update("Man oh man do I love node!")
  .digest("hex");
Pixel Freak

Jawaban yang mirip dengan “Hashing di Node JS”

Pertanyaan yang mirip dengan “Hashing di Node JS”

Lebih banyak jawaban terkait untuk “Hashing di Node JS” di JavaScript

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya