💾 Archived View for tris.fyi › pydoc › cryptography.hazmat.primitives.asymmetric.x448 captured on 2022-04-28 at 17:44:52. Gemini links have been rewritten to link to archived content

View Raw

More Information

⬅️ Previous capture (2022-01-08)

➡️ Next capture (2022-07-16)

-=-=-=-=-=-=-

Back to module index

Go to module by name

cryptography.hazmat.primitives.asymmetric

cryptography.hazmat.primitives

cryptography.hazmat

cryptography

cryptography.hazmat.primitives.asymmetric.x448

This module has no docstring.

Classes

UnsupportedAlgorithm

with_traceback(...)

  Exception.with_traceback(tb) --
      set self.__traceback__ to tb and return self.
args = <attribute 'args' of 'BaseException' objects>

X448PrivateKey

exchange(self, peer_public_key: cryptography.hazmat.primitives.asymmetric.x448.X448PublicKey) -> bytes


          Performs a key exchange operation using the provided peer's public key.
        
from_private_bytes(data: bytes) -> 'X448PrivateKey'
generate() -> 'X448PrivateKey'
private_bytes(self, encoding: cryptography.hazmat.primitives._serialization.Encoding, format: cryptography.hazmat.primitives._serialization.PrivateFormat, encryption_algorithm: cryptography.hazmat.primitives._serialization.KeySerializationEncryption) -> bytes


          The serialized bytes of the private key.
        
public_key(self) -> cryptography.hazmat.primitives.asymmetric.x448.X448PublicKey


          The serialized bytes of the public key.
        

X448PublicKey

from_public_bytes(data) -> 'X448PublicKey'
public_bytes(self, encoding: cryptography.hazmat.primitives._serialization.Encoding, format: cryptography.hazmat.primitives._serialization.PublicFormat) -> bytes


          The serialized bytes of the public key.
        

Modules

abc