diff options
Diffstat (limited to 'www/lib/crypto-js/hmac-sha224.js')
| -rw-r--r-- | www/lib/crypto-js/hmac-sha224.js | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/www/lib/crypto-js/hmac-sha224.js b/www/lib/crypto-js/hmac-sha224.js new file mode 100644 index 00000000..3778863a --- /dev/null +++ b/www/lib/crypto-js/hmac-sha224.js @@ -0,0 +1,18 @@ +;(function (root, factory, undef) { + if (typeof exports === "object") { + // CommonJS + module.exports = exports = factory(require("./core"), require("./sha256"), require("./sha224"), require("./hmac")); + } + else if (typeof define === "function" && define.amd) { + // AMD + define(["./core", "./sha256", "./sha224", "./hmac"], factory); + } + else { + // Global (browser) + factory(root.CryptoJS); + } +}(this, function (CryptoJS) { + + return CryptoJS.HmacSHA224; + +}));
\ No newline at end of file |
