(self, url, get={}, post={}, ref=False, cookies=True, req=None,
input_type='jpg', output_type='textual', ocr=True, timeout=120)
| 39 | pass |
| 40 | |
| 41 | def decrypt(self, url, get={}, post={}, ref=False, cookies=True, req=None, |
| 42 | input_type='jpg', output_type='textual', ocr=True, timeout=120): |
| 43 | img = self.load( |
| 44 | url, |
| 45 | get=get, |
| 46 | post=post, |
| 47 | ref=ref, |
| 48 | cookies=cookies, |
| 49 | decode=False, |
| 50 | req=req or self.pyfile.plugin.req) |
| 51 | return self.decrypt_image(img, input_type, output_type, ocr, timeout) |
| 52 | |
| 53 | def decrypt_image(self, img, input_type='jpg', |
| 54 | output_type='textual', ocr=False, timeout=120): |
no test coverage detected