aboutsummaryrefslogtreecommitdiff
path: root/includes/js/dojox/encoding/crypto/_base.js
diff options
context:
space:
mode:
Diffstat (limited to 'includes/js/dojox/encoding/crypto/_base.js')
-rw-r--r--includes/js/dojox/encoding/crypto/_base.js19
1 files changed, 0 insertions, 19 deletions
diff --git a/includes/js/dojox/encoding/crypto/_base.js b/includes/js/dojox/encoding/crypto/_base.js
deleted file mode 100644
index 174d073..0000000
--- a/includes/js/dojox/encoding/crypto/_base.js
+++ /dev/null
@@ -1,19 +0,0 @@
-if(!dojo._hasResource["dojox.encoding.crypto._base"]){ //_hasResource checks added by build. Do not use _hasResource directly in your code.
-dojo._hasResource["dojox.encoding.crypto._base"] = true;
-dojo.provide("dojox.encoding.crypto._base");
-
-(function(){
- var c=dojox.encoding.crypto;
- c.cipherModes={
- // summary
- // Enumeration for various cipher modes.
- ECB:0, CBC:1, PCBC:2, CFB:3, OFB:4, CTR:5
- };
- c.outputTypes={
- // summary
- // Enumeration for input and output encodings.
- Base64:0, Hex:1, String:2, Raw:3
- };
-})();
-
-}