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
3c428e4b
authored
2016-02-02 17:30:24 -0500
by
brandonocasey
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
fixing another line break on parens
1 parent
d7cd492a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
8 deletions
src/decrypter.js
src/decrypter.js
View file @
3c428e4
...
...
@@ -317,14 +317,12 @@ export const decrypt = function(encrypted, key, initVector) {
encrypted3
=
ntoh
(
encrypted32
[
wordIx
+
3
]);
// decrypt the block
decipher
.
decrypt
(
encrypted0
,
encrypted1
,
encrypted2
,
encrypted3
,
decrypted32
,
wordIx
);
decipher
.
decrypt
(
encrypted0
,
encrypted1
,
encrypted2
,
encrypted3
,
decrypted32
,
wordIx
);
// XOR with the IV, and restore network byte-order to obtain the
// plaintext
...
...
Please
register
or
sign in
to post a comment