summaryrefslogtreecommitdiff
path: root/www/lib/crypto-js/hmac-sha384.js
diff options
context:
space:
mode:
authorPliable Pixels <pliablepixels@gmail.com>2016-08-05 14:05:24 -0400
committerPliable Pixels <pliablepixels@gmail.com>2016-08-05 14:05:24 -0400
commitd743aa39f3ddaf5e3f1d5f40e2a3ec9eb90cfc4d (patch)
tree0744e3c746d356e5e791213556a4855231d4c626 /www/lib/crypto-js/hmac-sha384.js
parentbcee540a8de31a4c9ce12923d8759c21ef2424f2 (diff)
#293 - logs now won't have password stored, and userProfile is cryptoJS ciphered
Former-commit-id: 0db06364a3532cbbb31bd5fa33a488b232f725a5
Diffstat (limited to 'www/lib/crypto-js/hmac-sha384.js')
-rw-r--r--www/lib/crypto-js/hmac-sha384.js18
1 files changed, 18 insertions, 0 deletions
diff --git a/www/lib/crypto-js/hmac-sha384.js b/www/lib/crypto-js/hmac-sha384.js
new file mode 100644
index 00000000..0036e2b8
--- /dev/null
+++ b/www/lib/crypto-js/hmac-sha384.js
@@ -0,0 +1,18 @@
+;(function (root, factory, undef) {
+ if (typeof exports === "object") {
+ // CommonJS
+ module.exports = exports = factory(require("./core"), require("./x64-core"), require("./sha512"), require("./sha384"), require("./hmac"));
+ }
+ else if (typeof define === "function" && define.amd) {
+ // AMD
+ define(["./core", "./x64-core", "./sha512", "./sha384", "./hmac"], factory);
+ }
+ else {
+ // Global (browser)
+ factory(root.CryptoJS);
+ }
+}(this, function (CryptoJS) {
+
+ return CryptoJS.HmacSHA384;
+
+})); \ No newline at end of file