How to use the HmacSHA224 function from crypto-js
Find comprehensive JavaScript crypto-js.HmacSHA224 code examples handpicked from public code repositorys.
GitHub: mnismt/MyHash
83 84 85 86 87 88 89 90 91 92
}, hmacsha1() { return CryptoJS.HmacSHA1(this.text, this.serect).toString(); }, hmacsha224() { return CryptoJS.HmacSHA224(this.text, this.serect).toString(); }, hmacsha256() { return CryptoJS.HmacSHA256(this.text, this.serect).toString(); },
0
1
1
+ 17 other calls in file
97 98 99 100 101 102 103 104 105 106
}; /* SHA224 hashing */ exports.SHA224 = function(text, key) { try { return typeof key !== undefined ? CryptoJS.HmacSHA224(text, key) : CryptoJS.SHA224(text); } catch (err) { throw "ERROR - utils/utilidades.js _ SHA224 method"; }
1
0
2
+ 3 other calls in file
crypto-js.AES is the most popular function in crypto-js (907 examples)