Lines Matching refs:digest
69 .digest('hex');
224 .digest('hex');
352 .digest('hex')
361 .digest('hex')
368 const a1 = crypto.createHash('sha1').update('Test123').digest('hex');
369 const a2 = crypto.createHash('sha256').update('Test123').digest('base64');
370 const a3 = crypto.createHash('sha512').update('Test123').digest(); // binary
371 const a4 = crypto.createHash('sha1').update('Test123').digest('buffer');
374 const a0 = crypto.createHash('md5').update('Test123').digest('latin1');
403 const h1 = crypto.createHash('sha1').update('Test123').digest('hex');
405 .digest('hex');
419 sha1Hash.digest('hex'),
425 // Unknown digest method should throw an error: