summaryrefslogtreecommitdiff
path: root/js/dojo-1.7.2/dojox/encoding/crypto/_base.js
blob: 04de1ea1b1d09a31b8d9f486c6c69efba6cc654a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
//>>built
define("dojox/encoding/crypto/_base", ["dojo/_base/lang"], function(lang) {
	
	var c = lang.getObject("dojox.encoding.crypto", true);
	/*=====
		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
	};
	
	return c;
});