OXIESEC PANEL
- Current Dir:
/
/
snap
/
core24
/
888
/
usr
/
lib
/
python3
/
dist-packages
/
cryptography
/
hazmat
/
primitives
/
kdf
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
03/18/2025 08:12:15 AM
rwxr-xr-x
📄
__init__.py
750 bytes
05/27/2024 07:18:06 AM
rw-r--r--
📁
__pycache__
-
03/18/2025 08:12:15 AM
rwxr-xr-x
📄
concatkdf.py
3.64 KB
05/27/2024 07:18:06 AM
rw-r--r--
📄
hkdf.py
2.97 KB
05/27/2024 07:18:06 AM
rw-r--r--
📄
kbkdf.py
9.02 KB
05/27/2024 07:18:06 AM
rw-r--r--
📄
pbkdf2.py
1.96 KB
05/27/2024 07:18:06 AM
rw-r--r--
📄
scrypt.py
2.3 KB
05/27/2024 07:18:06 AM
rw-r--r--
📄
x963kdf.py
1.96 KB
05/27/2024 07:18:06 AM
rw-r--r--
Editing: __init__.py
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 __future__ import annotations import abc class KeyDerivationFunction(metaclass=abc.ABCMeta): @abc.abstractmethod def derive(self, key_material: bytes) -> bytes: """ Deterministically generates and returns a new key based on the existing key material. """ @abc.abstractmethod def verify(self, key_material: bytes, expected_key: bytes) -> None: """ Checks whether the key generated by the key material matches the expected derived key. Raises an exception if they do not match. """