aboutsummaryrefslogtreecommitdiff
path: root/includes/js/dojox/crypto/Blowfish.js
diff options
context:
space:
mode:
Diffstat (limited to 'includes/js/dojox/crypto/Blowfish.js')
-rw-r--r--includes/js/dojox/crypto/Blowfish.js10
1 files changed, 10 insertions, 0 deletions
diff --git a/includes/js/dojox/crypto/Blowfish.js b/includes/js/dojox/crypto/Blowfish.js
new file mode 100644
index 0000000..a317887
--- /dev/null
+++ b/includes/js/dojox/crypto/Blowfish.js
@@ -0,0 +1,10 @@
+if(!dojo._hasResource["dojox.crypto.Blowfish"]){ //_hasResource checks added by build. Do not use _hasResource directly in your code.
+dojo._hasResource["dojox.crypto.Blowfish"] = true;
+dojo.provide("dojox.crypto.Blowfish");
+dojo.require("dojox.encoding.crypto.Blowfish");
+
+dojo.deprecated("dojox.crypto.Blowfish", "DojoX cryptography has been merged into DojoX Encoding. To use Blowfish, include dojox.encoding.crypto.Blowfish.", "1.2");
+
+dojox.crypto.Blowfish=dojox.encoding.crypto.Blowfish;
+
+}