summaryrefslogtreecommitdiffstatshomepage
path: root/includes/js/dojox/crypto
diff options
context:
space:
mode:
Diffstat (limited to 'includes/js/dojox/crypto')
-rw-r--r--includes/js/dojox/crypto/Blowfish.js10
-rw-r--r--includes/js/dojox/crypto/MD5.js10
-rw-r--r--includes/js/dojox/crypto/README12
-rw-r--r--includes/js/dojox/crypto/_base.js14
4 files changed, 0 insertions, 46 deletions
diff --git a/includes/js/dojox/crypto/Blowfish.js b/includes/js/dojox/crypto/Blowfish.js
deleted file mode 100644
index a317887..0000000
--- a/includes/js/dojox/crypto/Blowfish.js
+++ /dev/null
@@ -1,10 +0,0 @@
-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;
-
-}
diff --git a/includes/js/dojox/crypto/MD5.js b/includes/js/dojox/crypto/MD5.js
deleted file mode 100644
index aa5ac1e..0000000
--- a/includes/js/dojox/crypto/MD5.js
+++ /dev/null
@@ -1,10 +0,0 @@
-if(!dojo._hasResource["dojox.crypto.MD5"]){ //_hasResource checks added by build. Do not use _hasResource directly in your code.
-dojo._hasResource["dojox.crypto.MD5"] = true;
-dojo.provide("dojox.crypto.MD5");
-dojo.require("dojox.encoding.digests.MD5");
-
-dojo.deprecated("dojox.crypto.MD5.compute", "DojoX cryptography has been merged into DojoX Encoding. To use MD5, include dojox.encoding.digests.MD5.", "1.2");
-
-dojox.crypto.MD5.compute=dojox.encoding.digests.MD5;
-
-}
diff --git a/includes/js/dojox/crypto/README b/includes/js/dojox/crypto/README
deleted file mode 100644
index 4103fa6..0000000
--- a/includes/js/dojox/crypto/README
+++ /dev/null
@@ -1,12 +0,0 @@
--------------------------------------------------------------------------------
-DojoX Cryptography
--------------------------------------------------------------------------------
-Project state:
-deprecated
--------------------------------------------------------------------------------
-This project will be removed in the near future in favor of dojox.encoding. If
-you are using this code, please follow the upgrade path:
-
-Digests (MD5): dojox.encoding.digests.MD5
-Crypto (Blowfish): dojox.encoding.crypto.Blowfish
--------------------------------------------------------------------------------
diff --git a/includes/js/dojox/crypto/_base.js b/includes/js/dojox/crypto/_base.js
deleted file mode 100644
index 152dd02..0000000
--- a/includes/js/dojox/crypto/_base.js
+++ /dev/null
@@ -1,14 +0,0 @@
-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);
-
-}