forked from brix/crypto-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rc4-profile.js
30 lines (25 loc) · 954 Bytes
/
rc4-profile.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
YUI.add('algo-rc4-profile', function (Y) {
var C = CryptoJS;
Y.Profiler.add({
name: 'RC4',
setUp: function () {
this.data = {
key: C.enc.Hex.parse('000102030405060708090a0b0c0d0e0f')
};
},
profileSinglePartMessage: function () {
var singlePartMessage = '';
for (var i = 0; i < 500; i++) {
singlePartMessage += '12345678901234567890123456789012345678901234567890';
}
C.algo.RC4.createEncryptor(this.data.key).finalize(singlePartMessage) + '';
},
profileMultiPartMessage: function () {
var rc4 = C.algo.RC4.createEncryptor(this.data.key);
for (var i = 0; i < 500; i++) {
rc4.process('12345678901234567890123456789012345678901234567890') + '';
}
rc4.finalize() + '';
}
});
}, '$Rev$');