source:
Dev/trunk/src/client/dojox/encoding/crypto/_base.js
Last change on this file was 483, checked in by hendrikvanantwerpen, 11 years ago | |
---|---|
File size: 368 bytes |
Line | |
---|---|
1 | define(["dojo/_base/lang"], function(lang) { |
2 | |
3 | var c = lang.getObject("dojox.encoding.crypto", true); |
4 | |
5 | c.cipherModes = { |
6 | // summary: |
7 | // Enumeration for various cipher modes. |
8 | ECB:0, CBC:1, PCBC:2, CFB:3, OFB:4, CTR:5 |
9 | }; |
10 | c.outputTypes = { |
11 | // summary: |
12 | // Enumeration for input and output encodings. |
13 | Base64:0, Hex:1, String:2, Raw:3 |
14 | }; |
15 | |
16 | return c; |
17 | }); |
Note: See TracBrowser
for help on using the repository browser.