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
1011b09b
authored
2016-02-04 10:14:55 -0500
by
brandonocasey
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
removed _ from tables in precompute
1 parent
b9e53a2e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
src/decrypter.js
src/decrypter.js
View file @
1011b09
...
...
@@ -134,9 +134,9 @@ class AES {
* @private
*/
_precompute
()
{
let
_
tables
=
[[[],
[],
[],
[],
[]],
[[],
[],
[],
[],
[]]];
let
encTable
=
_
tables
[
0
];
let
decTable
=
_
tables
[
1
];
let
tables
=
[[[],
[],
[],
[],
[]],
[[],
[],
[],
[],
[]]];
let
encTable
=
tables
[
0
];
let
decTable
=
tables
[
1
];
let
sbox
=
encTable
[
4
];
let
sboxInv
=
decTable
[
4
];
let
i
;
...
...
@@ -179,7 +179,7 @@ class AES {
encTable
[
i
]
=
encTable
[
i
].
slice
(
0
);
decTable
[
i
]
=
decTable
[
i
].
slice
(
0
);
}
return
_
tables
;
return
tables
;
}
/**
...
...
Please
register
or
sign in
to post a comment