Subversion Repositories Applications.papyrus

Rev

Rev 1318 | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1318 Rev 1422
1
/*
1
/*
2
	Copyright (c) 2004-2006, The Dojo Foundation
2
	Copyright (c) 2004-2006, The Dojo Foundation
3
	All Rights Reserved.
3
	All Rights Reserved.
4
 
4
 
5
	Licensed under the Academic Free License version 2.1 or above OR the
5
	Licensed under the Academic Free License version 2.1 or above OR the
6
	modified BSD license. For more information on Dojo licensing, see:
6
	modified BSD license. For more information on Dojo licensing, see:
7
 
7
 
8
		http://dojotoolkit.org/community/licensing.shtml
8
		http://dojotoolkit.org/community/licensing.shtml
9
*/
9
*/
-
 
10
 
-
 
11
 
10
 
12
 
11
dojo.provide("dojo.crypto.Rijndael");
13
dojo.provide("dojo.crypto.Rijndael");
12
dojo.require("dojo.crypto");
14
dojo.require("dojo.crypto");
13
dojo.require("dojo.experimental");
15
dojo.require("dojo.experimental");
14
dojo.experimental("dojo.crypto.Rijndael");
16
dojo.experimental("dojo.crypto.Rijndael");
15
dojo.crypto.Rijndael = new function () {
17
dojo.crypto.Rijndael = new function () {
16
	this.encrypt = function (plaintext, key) {
18
	this.encrypt = function (plaintext, key) {
17
	};
19
	};
18
	this.decrypt = function (ciphertext, key) {
20
	this.decrypt = function (ciphertext, key) {
19
	};
21
	};
20
}();
22
}();
21
 
23