You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
368 B
17 lines
368 B
define(["dojo/_base/lang"], function(lang) { |
|
|
|
var c = lang.getObject("dojox.encoding.crypto", true); |
|
|
|
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; |
|
});
|
|
|