massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / coc-python-data / languageServer.0.5.59 / Typeshed / third_party / 2and3 / Crypto / Cipher / ARC4.pyi
diff --git a/.config/coc/extensions/coc-python-data/languageServer.0.5.59/Typeshed/third_party/2and3/Crypto/Cipher/ARC4.pyi b/.config/coc/extensions/coc-python-data/languageServer.0.5.59/Typeshed/third_party/2and3/Crypto/Cipher/ARC4.pyi
new file mode 100644 (file)
index 0000000..aeb435b
--- /dev/null
@@ -0,0 +1,15 @@
+from typing import Any, Union, Text\r
+\r
+__revision__ = ...  # type: str\r
+\r
+class ARC4Cipher:\r
+    block_size = ...  # type: int\r
+    key_size = ...  # type: int\r
+    def __init__(self, key: Union[bytes, Text], *args, **kwargs) -> None: ...\r
+    def encrypt(self, plaintext): ...\r
+    def decrypt(self, ciphertext): ...\r
+\r
+def new(key: Union[bytes, Text], *args, **kwargs) -> ARC4Cipher: ...\r
+\r
+block_size = ...  # type: int\r
+key_size = ...  # type: int\r