Home
last modified time | relevance | path

Searched refs:X448PrivateKey (Results 1 – 5 of 5) sorted by relevance

/external/python/cryptography/tests/hazmat/primitives/
Dtest_x448.py16 X448PrivateKey, X448PublicKey
34 X448PrivateKey.from_private_bytes(b"0" * 56)
37 X448PrivateKey.generate()
57 private_key = X448PrivateKey.from_private_bytes(private)
71 private_key = X448PrivateKey.from_private_bytes(private)
75 private_key = X448PrivateKey.from_private_bytes(
111 private_key = X448PrivateKey.from_private_bytes(private_bytes)
160 key = X448PrivateKey.generate()
163 assert isinstance(loaded_key, X448PrivateKey)
166 key = X448PrivateKey.generate()
[all …]
/external/python/cryptography/docs/hazmat/primitives/asymmetric/
Dx448.rst26 >>> from cryptography.hazmat.primitives.asymmetric.x448 import X448PrivateKey
29 >>> private_key = X448PrivateKey.generate()
34 >>> peer_public_key = X448PrivateKey.generate().public_key()
45 >>> private_key_2 = X448PrivateKey.generate()
46 >>> peer_public_key_2 = X448PrivateKey.generate().public_key()
59 .. class:: X448PrivateKey
67 :returns: :class:`X448PrivateKey`
74 :returns: :class:`X448PrivateKey`
80 >>> private_key = x448.X448PrivateKey.generate()
86 >>> loaded_private_key = x448.X448PrivateKey.from_private_bytes(private_bytes)
[all …]
Dserialization.rst578 :class:`~cryptography.hazmat.primitives.asymmetric.x448.X448PrivateKey`
/external/python/cryptography/src/cryptography/hazmat/backends/openssl/
Dx448.py11 X448PrivateKey, X448PublicKey
62 @utils.register_interface(X448PrivateKey)
/external/python/cryptography/src/cryptography/hazmat/primitives/asymmetric/
Dx448.py35 class X448PrivateKey(object): class