o
    Z2ht                     @  s   d dl mZ d dlZd dlmZmZ d dlmZ d dl	m
Z
 d dlmZ G dd dejd	Zeejj G d
d dejd	Zeejj dS )    )annotationsN)UnsupportedAlgorithm_Reasons)openssl)_serialization)Bufferc                   @  sj   e Zd ZedddZejdd
dZejdddZejdddZ	ejdddZ
ejd ddZdS )!Ed25519PublicKeydatabytesreturnc                 C  ,   ddl m} | stdtjtj|S Nr   )backendz4ed25519 is not supported by this version of OpenSSL.)	,cryptography.hazmat.backends.openssl.backendr   ed25519_supportedr   r    UNSUPPORTED_PUBLIC_KEY_ALGORITHMrust_openssled25519from_public_bytesclsr	   r    r   /home/skpark/git/infrasmart_work/infrasmart/venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/asymmetric/ed25519.pyr         z"Ed25519PublicKey.from_public_bytesencoding_serialization.Encodingformat_serialization.PublicFormatc                 C     dS )z9
        The serialized bytes of the public key.
        Nr   )selfr   r   r   r   r   public_bytes       zEd25519PublicKey.public_bytesc                 C  r   )z`
        The raw bytes of the public key.
        Equivalent to public_bytes(Raw, Raw).
        Nr   r   r   r   r   public_bytes_raw&   r!   z!Ed25519PublicKey.public_bytes_raw	signaturer   Nonec                 C  r   )z'
        Verify the signature.
        Nr   )r   r$   r	   r   r   r   verify-   r!   zEd25519PublicKey.verifyotherobjectboolc                 C  r   )z"
        Checks equality.
        Nr   )r   r'   r   r   r   __eq__3   r!   zEd25519PublicKey.__eq__c                 C  r   z!
        Returns a copy.
        Nr   r"   r   r   r   __copy__9   r!   zEd25519PublicKey.__copy__N)r	   r
   r   r   )r   r   r   r   r   r
   r   r
   )r$   r   r	   r   r   r%   )r'   r(   r   r)   r   r   )__name__
__module____qualname__classmethodr   abcabstractmethodr    r#   r&   r*   r,   r   r   r   r   r      s    	r   )	metaclassc                   @  sx   e Zd ZedddZedddZejdd	d
ZejdddZ	ejdddZ
ejd ddZejdddZdS )!Ed25519PrivateKeyr   c                 C  s*   ddl m} | stdtjtj S r   )	r   r   r   r   r   r   r   r   generate_key)r   r   r   r   r   generateD   s   
zEd25519PrivateKey.generater	   r   c                 C  r   r   )	r   r   r   r   r   r   r   r   from_private_bytesr   r   r   r   r9   P   r   z$Ed25519PrivateKey.from_private_bytesr   c                 C  r   )zD
        The Ed25519PublicKey derived from the private key.
        Nr   r"   r   r   r   
public_key\   r!   zEd25519PrivateKey.public_keyr   r   r   _serialization.PrivateFormatencryption_algorithm)_serialization.KeySerializationEncryptionr
   c                 C  r   )z:
        The serialized bytes of the private key.
        Nr   )r   r   r   r<   r   r   r   private_bytesb   r!   zEd25519PrivateKey.private_bytesc                 C  r   )zr
        The raw bytes of the private key.
        Equivalent to private_bytes(Raw, Raw, NoEncryption()).
        Nr   r"   r   r   r   private_bytes_rawm   r!   z#Ed25519PrivateKey.private_bytes_rawc                 C  r   )z!
        Signs the data.
        Nr   )r   r	   r   r   r   signt   r!   zEd25519PrivateKey.signc                 C  r   r+   r   r"   r   r   r   r,   z   r!   zEd25519PrivateKey.__copy__N)r   r6   )r	   r   r   r6   r.   )r   r   r   r;   r<   r=   r   r
   r-   )r	   r   r   r
   )r/   r0   r1   r2   r8   r9   r3   r4   r:   r>   r?   r@   r,   r   r   r   r   r6   C   s    
r6   )
__future__r   r3   cryptography.exceptionsr   r   "cryptography.hazmat.bindings._rustr   r   cryptography.hazmat.primitivesr   cryptography.utilsr   ABCMetar   registerr   r6   r   r   r   r   <module>   s   1>