aboutsummaryrefslogtreecommitdiff
path: root/includes/js/dojox/crypto/_base.js
diff options
context:
space:
mode:
Diffstat (limited to 'includes/js/dojox/crypto/_base.js')
-rw-r--r--includes/js/dojox/crypto/_base.js14
1 files changed, 14 insertions, 0 deletions
diff --git a/includes/js/dojox/crypto/_base.js b/includes/js/dojox/crypto/_base.js
new file mode 100644
index 0000000..152dd02
--- /dev/null
+++ b/includes/js/dojox/crypto/_base.js
@@ -0,0 +1,14 @@
+if(!dojo._hasResource["dojox.crypto._base"]){ //_hasResource checks added by build. Do not use _hasResource directly in your code.
+dojo._hasResource["dojox.crypto._base"] = true;
+dojo.provide("dojox.crypto._base");
+
+dojo.require("dojox.encoding.crypto._base");
+dojo.require("dojox.encoding.digests._base");
+
+dojo.deprecated("dojox.crypto._base", "DojoX cryptography has been merged into DojoX Encoding. To use, include dojox.encoding.digests and/or dojox.encoding.crypto.", "1.2");
+
+// unfortunately there's no way of pointing at two files with an alias, particularly
+// when both have similarly named things; but we'll try anyways.
+dojox.crypto._base=dojo.mixin(dojox.encoding.crypto._base, dojox.encoding.digests._base);
+
+}