Subversion Repositories Applications.papyrus

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
2150 mathias 1
if(!dojo._hasResource["dojox.crypto._base"]){ //_hasResource checks added by build. Do not use _hasResource directly in your code.
2
dojo._hasResource["dojox.crypto._base"] = true;
3
dojo.provide("dojox.crypto._base");
4
 
5
(function(){
6
	var dxc=dojox.crypto;
7
	dxc.cipherModes={
8
		//	summary
9
		//	Enumeration for various cipher modes.
10
		ECB:0, CBC:1, PCBC:2, CFB:3, OFB:4, CTR:5
11
	};
12
	dxc.outputTypes={
13
		//	summary
14
		//	Enumeration for input and output encodings.
15
		Base64:0, Hex:1, String:2, Raw:3
16
	};
17
})();
18
 
19
}