💾 Archived View for tris.fyi › pydoc › cryptography.hazmat.backends.openssl.ed25519 captured on 2022-06-11 at 21:47:04. 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.backends.openssl

cryptography.hazmat.backends

cryptography.hazmat

cryptography

cryptography.hazmat.backends.openssl.ed25519

This module has no docstring.

Classes

Ed25519PrivateKey

from_private_bytes(data: bytes) -> 'Ed25519PrivateKey'
generate() -> 'Ed25519PrivateKey'
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.ed25519.Ed25519PublicKey


          The Ed25519PublicKey derived from the private key.
        
sign(self, data: bytes) -> bytes


          Signs the data.
        

Ed25519PublicKey

from_public_bytes(data: bytes) -> 'Ed25519PublicKey'
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) -> None


          Verify the signature.
        

Modules

exceptions

serialization