fixing a linting issue
Showing
1 changed file
with
0 additions
and
2 deletions
... | @@ -13,7 +13,6 @@ const ntoh = function(word) { | ... | @@ -13,7 +13,6 @@ const ntoh = function(word) { |
13 | (word >>> 24); | 13 | (word >>> 24); |
14 | }; | 14 | }; |
15 | 15 | ||
16 | |||
17 | /* eslint-disable max-len */ | 16 | /* eslint-disable max-len */ |
18 | /** | 17 | /** |
19 | * Decrypt bytes using AES-128 with CBC and PKCS#7 padding. | 18 | * Decrypt bytes using AES-128 with CBC and PKCS#7 padding. |
... | @@ -96,7 +95,6 @@ export const decrypt = function(encrypted, key, initVector) { | ... | @@ -96,7 +95,6 @@ export const decrypt = function(encrypted, key, initVector) { |
96 | return decrypted; | 95 | return decrypted; |
97 | }; | 96 | }; |
98 | 97 | ||
99 | |||
100 | export class Decrypter { | 98 | export class Decrypter { |
101 | constructor(encrypted, key, initVector, done) { | 99 | constructor(encrypted, key, initVector, done) { |
102 | let step = Decrypter.STEP; | 100 | let step = Decrypter.STEP; | ... | ... |
-
Please register or sign in to post a comment