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: x448.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.asymmetric import x448 class X448PrivateKey: ... class X448PublicKey: ... def generate_key() -> x448.X448PrivateKey: ... def private_key_from_ptr(ptr: int) -> x448.X448PrivateKey: ... def public_key_from_ptr(ptr: int) -> x448.X448PublicKey: ... def from_private_bytes(data: bytes) -> x448.X448PrivateKey: ... def from_public_bytes(data: bytes) -> x448.X448PublicKey: ...