OXIESEC PANEL
- Current Dir:
/
/
snap
/
core24
/
888
/
usr
/
lib
/
python3
/
dist-packages
/
cryptography
/
hazmat
/
bindings
/
_rust
/
openssl
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
03/18/2025 08:12:15 AM
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: kdf.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. from cryptography.hazmat.primitives.hashes import HashAlgorithm def derive_pbkdf2_hmac( key_material: bytes, algorithm: HashAlgorithm, salt: bytes, iterations: int, length: int, ) -> bytes: ... def derive_scrypt( key_material: bytes, salt: bytes, n: int, r: int, p: int, max_mem: int, length: int, ) -> bytes: ...