Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
brainfood
/
videojs-contrib-hls
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Graphs
Network
Create a new issue
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
22b23e8e
authored
2016-02-02 16:38:30 -0500
by
brandonocasey
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
only precompute tables once, rather than doing it every time
1 parent
cf12b162
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
60 additions
and
53 deletions
src/decrypter.js
src/decrypter.js
View file @
22b23e8
...
...
@@ -50,6 +50,62 @@ const ntoh = function(word) {
};
/**
* Expand the S-box tables.
*
* @private
*/
const
precompute
=
function
()
{
let
_tables
=
[[[],
[],
[],
[],
[]],
[[],
[],
[],
[],
[]]];
let
encTable
=
_tables
[
0
];
let
decTable
=
_tables
[
1
];
let
sbox
=
encTable
[
4
];
let
sboxInv
=
decTable
[
4
];
let
i
;
let
x
;
let
xInv
;
let
d
=
[];
let
th
=
[];
let
x2
;
let
x4
;
let
x8
;
let
s
;
let
tEnc
;
let
tDec
;
// Compute double and third tables
for
(
i
=
0
;
i
<
256
;
i
++
)
{
th
[(
d
[
i
]
=
i
<<
1
^
(
i
>>
7
)
*
283
)
^
i
]
=
i
;
}
for
(
x
=
xInv
=
0
;
!
sbox
[
x
];
x
^=
x2
||
1
,
xInv
=
th
[
xInv
]
||
1
)
{
// Compute sbox
s
=
xInv
^
xInv
<<
1
^
xInv
<<
2
^
xInv
<<
3
^
xInv
<<
4
;
s
=
s
>>
8
^
s
&
255
^
99
;
sbox
[
x
]
=
s
;
sboxInv
[
s
]
=
x
;
// Compute MixColumns
x8
=
d
[
x4
=
d
[
x2
=
d
[
x
]]];
tDec
=
x8
*
0x1010101
^
x4
*
0x10001
^
x2
*
0x101
^
x
*
0x1010100
;
tEnc
=
d
[
s
]
*
0x101
^
s
*
0x1010100
;
for
(
i
=
0
;
i
<
4
;
i
++
)
{
encTable
[
i
][
x
]
=
tEnc
=
tEnc
<<
24
^
tEnc
>>>
8
;
decTable
[
i
][
s
]
=
tDec
=
tDec
<<
24
^
tDec
>>>
8
;
}
}
// Compactify. Considerable speedup on Firefox.
for
(
i
=
0
;
i
<
5
;
i
++
)
{
encTable
[
i
]
=
encTable
[
i
].
slice
(
0
);
decTable
[
i
]
=
decTable
[
i
].
slice
(
0
);
}
return
_tables
;
}
let
tables
;
/**
* Schedule out an AES key for both encryption and decryption. This
* is a low-level class. Use a cipher mode to do bulk encryption.
*
...
...
@@ -70,8 +126,10 @@ class AES {
*
* @private
*/
this
.
_tables
=
[[[],
[],
[],
[],
[]],
[[],
[],
[],
[],
[]]];
this
.
_precompute
();
if
(
!
tables
)
{
tables
=
precompute
();
}
this
.
_tables
=
tables
;
let
i
;
let
j
;
let
tmp
;
...
...
@@ -199,57 +257,6 @@ class AES {
}
}
/**
* Expand the S-box tables.
*
* @private
*/
_precompute
()
{
let
encTable
=
this
.
_tables
[
0
];
let
decTable
=
this
.
_tables
[
1
];
let
sbox
=
encTable
[
4
];
let
sboxInv
=
decTable
[
4
];
let
i
;
let
x
;
let
xInv
;
let
d
=
[];
let
th
=
[];
let
x2
;
let
x4
;
let
x8
;
let
s
;
let
tEnc
;
let
tDec
;
// Compute double and third tables
for
(
i
=
0
;
i
<
256
;
i
++
)
{
th
[(
d
[
i
]
=
i
<<
1
^
(
i
>>
7
)
*
283
)
^
i
]
=
i
;
}
for
(
x
=
xInv
=
0
;
!
sbox
[
x
];
x
^=
x2
||
1
,
xInv
=
th
[
xInv
]
||
1
)
{
// Compute sbox
s
=
xInv
^
xInv
<<
1
^
xInv
<<
2
^
xInv
<<
3
^
xInv
<<
4
;
s
=
s
>>
8
^
s
&
255
^
99
;
sbox
[
x
]
=
s
;
sboxInv
[
s
]
=
x
;
// Compute MixColumns
x8
=
d
[
x4
=
d
[
x2
=
d
[
x
]]];
tDec
=
x8
*
0x1010101
^
x4
*
0x10001
^
x2
*
0x101
^
x
*
0x1010100
;
tEnc
=
d
[
s
]
*
0x101
^
s
*
0x1010100
;
for
(
i
=
0
;
i
<
4
;
i
++
)
{
encTable
[
i
][
x
]
=
tEnc
=
tEnc
<<
24
^
tEnc
>>>
8
;
decTable
[
i
][
s
]
=
tDec
=
tDec
<<
24
^
tDec
>>>
8
;
}
}
// Compactify. Considerable speedup on Firefox.
for
(
i
=
0
;
i
<
5
;
i
++
)
{
encTable
[
i
]
=
encTable
[
i
].
slice
(
0
);
decTable
[
i
]
=
decTable
[
i
].
slice
(
0
);
}
}
}
/* eslint-disable max-len */
...
...
Please
register
or
sign in
to post a comment