B
    uf.                 @  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
 G dd dejdZeed	rheejj G d
d dejdZeed	reejj dS )    )annotationsN)UnsupportedAlgorithm_Reasons)openssl)_serializationc               @  sb   e Zd Zedd dddZejdddddd	Zejdd
ddZejdddddZ	dS )X448PublicKeybytes)datareturnc             C  s,   ddl m} | s tdtjtj|S )Nr   )backendz1X448 is not supported by this version of OpenSSL.)	,cryptography.hazmat.backends.openssl.backendr   x448_supportedr   r   UNSUPPORTED_EXCHANGE_ALGORITHMrust_opensslx448from_public_bytes)clsr	   r    r   p/home/ankuromar296_gmail_com/myenv/lib/python3.7/site-packages/cryptography/hazmat/primitives/asymmetric/x448.pyr      s    zX448PublicKey.from_public_bytesz_serialization.Encodingz_serialization.PublicFormat)encodingformatr
   c             C  s   dS )z9
        The serialized bytes of the public key.
        Nr   )selfr   r   r   r   r   public_bytes   s    zX448PublicKey.public_bytes)r
   c             C  s   dS )z`
        The raw bytes of the public key.
        Equivalent to public_bytes(Raw, Raw).
        Nr   )r   r   r   r   public_bytes_raw%   s    zX448PublicKey.public_bytes_rawobjectbool)otherr
   c             C  s   dS )z"
        Checks equality.
        Nr   )r   r   r   r   r   __eq__,   s    zX448PublicKey.__eq__N)
__name__
__module____qualname__classmethodr   abcabstractmethodr   r   r   r   r   r   r   r      s   
r   )	metaclassr   c               @  s   e Zd Zed dddZedd dddZejddd	d
ZejdddddddZ	ejddddZ
ejdddddZdS )X448PrivateKey)r
   c             C  s*   ddl m} | s tdtjtj S )Nr   )r   z1X448 is not supported by this version of OpenSSL.)	r   r   r   r   r   r   r   r   Zgenerate_key)r   r   r   r   r   generate8   s    zX448PrivateKey.generater   )r	   r
   c             C  s,   ddl m} | s tdtjtj|S )Nr   )r   z1X448 is not supported by this version of OpenSSL.)	r   r   r   r   r   r   r   r   from_private_bytes)r   r	   r   r   r   r   r'   D   s    z!X448PrivateKey.from_private_bytesr   c             C  s   dS )zI
        Returns the public key associated with this private key
        Nr   )r   r   r   r   
public_keyP   s    zX448PrivateKey.public_keyz_serialization.Encodingz_serialization.PrivateFormatz)_serialization.KeySerializationEncryption)r   r   encryption_algorithmr
   c             C  s   dS )z:
        The serialized bytes of the private key.
        Nr   )r   r   r   r)   r   r   r   private_bytesV   s    	zX448PrivateKey.private_bytesc             C  s   dS )zr
        The raw bytes of the private key.
        Equivalent to private_bytes(Raw, Raw, NoEncryption()).
        Nr   )r   r   r   r   private_bytes_rawa   s    z X448PrivateKey.private_bytes_raw)peer_public_keyr
   c             C  s   dS )zY
        Performs a key exchange operation using the provided peer's public key.
        Nr   )r   r,   r   r   r   exchangeh   s    zX448PrivateKey.exchangeN)r   r   r    r!   r&   r'   r"   r#   r(   r*   r+   r-   r   r   r   r   r%   7   s   r%   )
__future__r   r"   Zcryptography.exceptionsr   r   Z"cryptography.hazmat.bindings._rustr   r   Zcryptography.hazmat.primitivesr   ABCMetar   hasattrregisterr   r%   r   r   r   r   <module>   s   %
8
