Ë
    ùmxi®  ã                   óL   — d Z ddlmZ ddlmZ  G d„ de«      Z G d„ de«      Zy)	zIECDSA (ES256) verifier and signer that use the ``cryptography`` library.
é    )ÚEsSigner)Ú
EsVerifierc                   ó   — e Zd ZdZy)ÚES256VerifierzÒVerifies ECDSA cryptographic signatures using public keys.

    Args:
        public_key (cryptography.hazmat.primitives.asymmetric.ec.ECDSAPublicKey): The public key used to verify
            signatures.
    N©Ú__name__Ú
__module__Ú__qualname__Ú__doc__© ó    úN/home/htdocs/ttos/venv/lib/python3.12/site-packages/google/auth/crypt/es256.pyr   r      s   „ ñð 	r   r   c                   ó   — e Zd ZdZy)ÚES256Signeraˆ  Signs messages with an ECDSA private key.

    Args:
        private_key (
                cryptography.hazmat.primitives.asymmetric.ec.ECDSAPrivateKey):
            The private key to sign with.
        key_id (str): Optional key ID used to identify this private key. This
            can be useful to associate the private key with its associated
            public key or certificate.
    Nr   r   r   r   r   r   !   s   „ ñ	ð 	r   r   N)r   Úgoogle.auth.crypt.esr   r   r   r   r   r   r   ú<module>r      s*   ðñõ *Ý +ô	�Jô 	ô	�(õ 	r   