diff options
| author | 2015-12-14 03:51:26 +0100 | |
|---|---|---|
| committer | 2015-12-27 20:54:33 +0100 | |
| commit | b0b837650b2f3f85e9533e9cbc56d6140d1929a6 (patch) | |
| tree | 3aff7a226f5f67e0550f9e2c09fa62add65906a0 /module/plugins/crypter/FilecryptCc.py | |
| parent | Update addons (diff) | |
| download | pyload-b0b837650b2f3f85e9533e9cbc56d6140d1929a6.tar.xz | |
Crypters version up
Diffstat (limited to 'module/plugins/crypter/FilecryptCc.py')
| -rw-r--r-- | module/plugins/crypter/FilecryptCc.py | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/module/plugins/crypter/FilecryptCc.py b/module/plugins/crypter/FilecryptCc.py index d435f4b9d..7b3c633ff 100644 --- a/module/plugins/crypter/FilecryptCc.py +++ b/module/plugins/crypter/FilecryptCc.py @@ -7,7 +7,7 @@ import binascii  import re  import urlparse -from Crypto.Cipher import AES +import Crypto.Cipher  from module.plugins.internal.Crypter import Crypter, create_getInfo  from module.plugins.captcha.ReCaptcha import ReCaptcha @@ -17,7 +17,7 @@ from module.plugins.captcha.SolveMedia import SolveMedia  class FilecryptCc(Crypter):      __name__    = "FilecryptCc"      __type__    = "crypter" -    __version__ = "0.22" +    __version__ = "0.23"      __status__  = "testing"      __pattern__ = r'https?://(?:www\.)?filecrypt\.cc/Container/\w+' @@ -202,7 +202,7 @@ class FilecryptCc(Crypter):          #: Decrypt          Key  = key          IV   = key -        obj  = AES.new(Key, AES.MODE_CBC, IV) +        obj  = Crypto.Cipher.AES.new(Key, Crypto.Cipher.AES.MODE_CBC, IV)          text = obj.decrypt(crypted.decode('base64'))          #: Extract links | 
