aboutsummaryrefslogtreecommitdiffstats
path: root/yt_dlp/extractor/adn.py
diff options
context:
space:
mode:
authorElyse <kevincristian@outlook.com>2022-05-15 06:57:53 -0500
committerGitHub <noreply@github.com>2022-05-15 04:57:53 -0700
commit3358f89361ffd104a427e51b7f5aefd9e55a7057 (patch)
tree885711d47454c59ebae14ae2955d6c295c35d0c8 /yt_dlp/extractor/adn.py
parentf3b3fe16af86e3b32a08df9ef4f32ba0f4f84016 (diff)
downloadhypervideo-pre-3358f89361ffd104a427e51b7f5aefd9e55a7057.tar.lz
hypervideo-pre-3358f89361ffd104a427e51b7f5aefd9e55a7057.tar.xz
hypervideo-pre-3358f89361ffd104a427e51b7f5aefd9e55a7057.zip
[adn] Update AES key (#3743)
Closes #2002 Authored by: elyse0
Diffstat (limited to 'yt_dlp/extractor/adn.py')
-rw-r--r--yt_dlp/extractor/adn.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/yt_dlp/extractor/adn.py b/yt_dlp/extractor/adn.py
index b47345e3c..18ddc5729 100644
--- a/yt_dlp/extractor/adn.py
+++ b/yt_dlp/extractor/adn.py
@@ -82,7 +82,7 @@ class ADNIE(InfoExtractor):
# http://animedigitalnetwork.fr/components/com_vodvideo/videojs/adn-vjs.min.js
dec_subtitles = unpad_pkcs7(aes_cbc_decrypt_bytes(
compat_b64decode(enc_subtitles[24:]),
- binascii.unhexlify(self._K + 'ab9f52f5baae7c72'),
+ binascii.unhexlify(self._K + '7fac1178830cfe0c'),
compat_b64decode(enc_subtitles[:24])))
subtitles_json = self._parse_json(dec_subtitles.decode(), None, fatal=False)
if not subtitles_json: