summaryrefslogtreecommitdiffstats
path: root/pyload/plugin/crypter/CryptItCom.py
diff options
context:
space:
mode:
Diffstat (limited to 'pyload/plugin/crypter/CryptItCom.py')
-rw-r--r--pyload/plugin/crypter/CryptItCom.py16
1 files changed, 16 insertions, 0 deletions
diff --git a/pyload/plugin/crypter/CryptItCom.py b/pyload/plugin/crypter/CryptItCom.py
new file mode 100644
index 000000000..615626f4f
--- /dev/null
+++ b/pyload/plugin/crypter/CryptItCom.py
@@ -0,0 +1,16 @@
+# -*- coding: utf-8 -*-
+
+from pyload.plugin.internal.DeadCrypter import DeadCrypter
+
+
+class CryptItCom(DeadCrypter):
+ __name = "CryptItCom"
+ __type = "crypter"
+ __version = "0.11"
+
+ __pattern = r'http://(?:www\.)?crypt-it\.com/(s|e|d|c)/\w+'
+ __config = []
+
+ __description = """Crypt-it.com decrypter plugin"""
+ __license = "GPLv3"
+ __authors = [("jeix", "jeix@hasnomail.de")]