YoutubeIE: add algo for length 81 (closes #1026)

This commit is contained in:
Jaime Marquínez Ferrándiz 2013-07-11 23:47:54 +02:00
parent fd87ff26b9
commit 606d7e67fd
3 changed files with 10 additions and 0 deletions

View file

@ -193,6 +193,8 @@ class YoutubeIE(InfoExtractor):
return s[6] + s[3:6] + s[33] + s[7:24] + s[0] + s[25:33] + s[53] + s[34:53] + s[24] + s[54:]
elif len(s) == 82:
return s[36] + s[79:67:-1] + s[81] + s[66:40:-1] + s[33] + s[39:36:-1] + s[40] + s[35] + s[0] + s[67] + s[32:0:-1] + s[34]
elif len(s) == 81:
return s[6] + s[3:6] + s[33] + s[7:24] + s[0] + s[25:33] + s[2] + s[34:53] + s[24] + s[54:81]
else:
raise ExtractorError(u'Unable to decrypt signature, key length %d not supported; retrying might work' % (len(s)))