💾 Archived View for tris.fyi › pydoc › cryptography.hazmat.primitives.asymmetric.ed448 captured on 2022-01-08 at 13:58:23. Gemini links have been rewritten to link to archived content
-=-=-=-=-=-=-
cryptography.hazmat.primitives.asymmetric
cryptography.hazmat.primitives
This module has no docstring.
from_private_bytes(data: bytes) -> 'Ed448PrivateKey'
generate() -> 'Ed448PrivateKey'
private_bytes(self, encoding: cryptography.hazmat.primitives._serialization.Encoding, format: cryptography.hazmat.primitives._serialization.PrivateFormat, encryption_algorithm: cryptography.hazmat.primitives._serialization.KeySerializationEncryption) The serialized bytes of the private key.
public_key(self) -> cryptography.hazmat.primitives.asymmetric.ed448.Ed448PublicKey The Ed448PublicKey derived from the private key.
sign(self, data: bytes) -> bytes Signs the data.
from_public_bytes(data: bytes) -> 'Ed448PublicKey'
public_bytes(self, encoding: cryptography.hazmat.primitives._serialization.Encoding, format: cryptography.hazmat.primitives._serialization.PublicFormat) -> bytes The serialized bytes of the public key.
verify(self, signature: bytes, data: bytes) Verify the signature.
with_traceback(...) Exception.with_traceback(tb) -- set self.__traceback__ to tb and return self.
args = <attribute 'args' of 'BaseException' objects>