OXIESEC PANEL
- Current Dir:
/
/
snap
/
core24
/
988
/
usr
/
lib
/
python3
/
dist-packages
/
cryptography
/
hazmat
/
bindings
/
_rust
/
openssl
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
05/04/2025 04:37:50 PM
rwxr-xr-x
📄
__init__.pyi
970 bytes
05/27/2024 07:18:06 AM
rw-r--r--
📄
dh.pyi
896 bytes
05/27/2024 07:18:06 AM
rw-r--r--
📄
dsa.pyi
764 bytes
05/27/2024 07:18:06 AM
rw-r--r--
📄
ed25519.pyi
629 bytes
05/27/2024 07:18:06 AM
rw-r--r--
📄
ed448.pyi
603 bytes
05/27/2024 07:18:06 AM
rw-r--r--
📄
hashes.pyi
573 bytes
05/27/2024 07:18:06 AM
rw-r--r--
📄
hmac.pyi
662 bytes
05/27/2024 07:18:06 AM
rw-r--r--
📄
kdf.pyi
544 bytes
05/27/2024 07:18:06 AM
rw-r--r--
📄
poly1305.pyi
540 bytes
05/27/2024 07:18:06 AM
rw-r--r--
📄
x25519.pyi
616 bytes
05/27/2024 07:18:06 AM
rw-r--r--
📄
x448.pyi
590 bytes
05/27/2024 07:18:06 AM
rw-r--r--
Editing: hmac.pyi
Close
# This file is dual licensed under the terms of the Apache License, Version # 2.0, and the BSD License. See the LICENSE file in the root of this repository # for complete details. import typing from cryptography.hazmat.primitives import hashes class HMAC(hashes.HashContext): def __init__( self, key: bytes, algorithm: hashes.HashAlgorithm, backend: typing.Any = None, ) -> None: ... @property def algorithm(self) -> hashes.HashAlgorithm: ... def update(self, data: bytes) -> None: ... def finalize(self) -> bytes: ... def verify(self, signature: bytes) -> None: ... def copy(self) -> HMAC: ...