massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-pyright / node_modules / pyright / dist / typeshed-fallback / stubs / cryptography / cryptography / hazmat / primitives / poly1305.pyi
1 class Poly1305(object):
2     def __init__(self, key: bytes) -> None: ...
3     def finalize(self) -> bytes: ...
4     @classmethod
5     def generate_tag(cls, key: bytes, data: bytes) -> bytes: ...
6     def update(self, data: bytes) -> None: ...
7     def verify(self, tag: bytes) -> None: ...
8     @classmethod
9     def verify_tag(cls, key: bytes, data: bytes, tag: bytes) -> None: ...