“Hashing im Knoten JS” Code-Antworten

Kryptoknoten

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 im Knoten JS

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

Ähnliche Antworten wie “Hashing im Knoten JS”

Fragen ähnlich wie “Hashing im Knoten JS”

Weitere verwandte Antworten zu “Hashing im Knoten JS” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen