o
    -&%a                     @   s<   d dl Z d dlZG dd de jdZG dd de jdZdS )    Nc                   @   sN   e Zd ZejdefddZejdeje	 fddZ
ejde	fddZdS )	CipherAlgorithmreturnc                 C      dS )zE
        A string naming this mode (e.g. "AES", "Camellia").
        N selfr   r   Q/usr/lib/python3/dist-packages/cryptography/hazmat/primitives/_cipheralgorithm.pyname       zCipherAlgorithm.namec                 C   r   )z<
        Valid key sizes for this algorithm in bits
        Nr   r   r   r   r   	key_sizes   r
   zCipherAlgorithm.key_sizesc                 C   r   )zW
        The size of the key being used as an integer in bits (e.g. 128, 256).
        Nr   r   r   r   r   key_size   r
   zCipherAlgorithm.key_sizeN)__name__
__module____qualname__abcabstractpropertystrr	   typing	FrozenSetintr   r   r   r   r   r   r      s    r   )	metaclassc                   @   s    e Zd ZejdefddZdS )BlockCipherAlgorithmr   c                 C   r   )zK
        The size of a block as an integer in bits (e.g. 64, 128).
        Nr   r   r   r   r   
block_size"   r
   zBlockCipherAlgorithm.block_sizeN)r   r   r   r   r   r   r   r   r   r   r   r   !   s    r   )r   r   ABCMetar   r   r   r   r   r   <module>   s   