]> git.pond.sub.org Git - eow/blob - static/dojo-release-1.1.1/dojox/encoding/crypto/_base.js
add Dojo 1.1.1
[eow] / static / dojo-release-1.1.1 / dojox / encoding / crypto / _base.js
1 if(!dojo._hasResource["dojox.encoding.crypto._base"]){ //_hasResource checks added by build. Do not use _hasResource directly in your code.
2 dojo._hasResource["dojox.encoding.crypto._base"] = true;
3 dojo.provide("dojox.encoding.crypto._base");
4
5 (function(){
6         var c=dojox.encoding.crypto;
7         c.cipherModes={
8                 //      summary
9                 //      Enumeration for various cipher modes.
10                 ECB:0, CBC:1, PCBC:2, CFB:3, OFB:4, CTR:5 
11         };
12         c.outputTypes={ 
13                 //      summary
14                 //      Enumeration for input and output encodings.
15                 Base64:0, Hex:1, String:2, Raw:3 
16         };
17 })();
18
19 }