o
    U»’h5  ã                   @   sþ   d dl Zd dlZddlmZ ejZejjZ	ej
Z
ejZejZejZejZejZejZejjZejjZejjZejjZejjZejjZejjZejjZ ejj!Z"ejj#Z$ee ej%j&fde'de(de(de'de'd	ej%j)d
e(fdd„Z*eefde(de'de'd
e(fdd„Z+dS )é    Né   )Ú_argon2ÚsizeÚpasswordÚsaltÚopslimitÚmemlimitÚencoderÚreturnc              
   C   s   |  tj | ||||t¡¡S )aŒ  
    Derive a ``size`` bytes long key from a caller-supplied
    ``password`` and ``salt`` pair using the argon2i
    memory-hard construct.

    the enclosing module provides the constants

        - :py:const:`.OPSLIMIT_INTERACTIVE`
        - :py:const:`.MEMLIMIT_INTERACTIVE`
        - :py:const:`.OPSLIMIT_MODERATE`
        - :py:const:`.MEMLIMIT_MODERATE`
        - :py:const:`.OPSLIMIT_SENSITIVE`
        - :py:const:`.MEMLIMIT_SENSITIVE`

    as a guidance for correct settings.

    :param size: derived key size, must be between
                 :py:const:`.BYTES_MIN` and
                 :py:const:`.BYTES_MAX`
    :type size: int
    :param password: password used to seed the key derivation procedure;
                     it length must be between
                     :py:const:`.PASSWD_MIN` and
                     :py:const:`.PASSWD_MAX`
    :type password: bytes
    :param salt: **RANDOM** salt used in the key derivation procedure;
                 its length must be exactly :py:const:`.SALTBYTES`
    :type salt: bytes
    :param opslimit: the time component (operation count)
                     of the key derivation procedure's computational cost;
                     it must be between
                     :py:const:`.OPSLIMIT_MIN` and
                     :py:const:`.OPSLIMIT_MAX`
    :type opslimit: int
    :param memlimit: the memory occupation component
                     of the key derivation procedure's computational cost;
                     it must be between
                     :py:const:`.MEMLIMIT_MIN` and
                     :py:const:`.MEMLIMIT_MAX`
    :type memlimit: int
    :rtype: bytes

    .. versionadded:: 1.2
    )ÚencodeÚnaclÚbindingsÚcrypto_pwhash_algÚALG)r   r   r   r   r   r	   © r   úF/var/www/html/venv/lib/python3.10/site-packages/nacl/pwhash/argon2i.pyÚkdf1   s
   5ÿÿr   c                 C   s   t j | ||t¡S )a¯  
    Hashes a password with a random salt, using the memory-hard
    argon2i construct and returning an ascii string that has all
    the needed info to check against a future password


    The default settings for opslimit and memlimit are those deemed
    correct for the interactive user login case.

    :param bytes password:
    :param int opslimit:
    :param int memlimit:
    :rtype: bytes

    .. versionadded:: 1.2
    )r   r   Úcrypto_pwhash_str_algr   )r   r   r   r   r   r   Ústrm   s   ÿr   ),Únacl.bindingsr   Únacl.encodingÚ r   ÚALG_ARGON2I13r   r   Úcrypto_pwhash_argon2i_STRPREFIXÚ	STRPREFIXÚ	SALTBYTESÚ
PASSWD_MINÚ
PASSWD_MAXÚPWHASH_SIZEÚ	BYTES_MINÚ	BYTES_MAXÚverifyÚ"crypto_pwhash_argon2i_MEMLIMIT_MAXÚMEMLIMIT_MAXÚ"crypto_pwhash_argon2i_MEMLIMIT_MINÚMEMLIMIT_MINÚ"crypto_pwhash_argon2i_OPSLIMIT_MAXÚOPSLIMIT_MAXÚ"crypto_pwhash_argon2i_OPSLIMIT_MINÚOPSLIMIT_MINÚ*crypto_pwhash_argon2i_OPSLIMIT_INTERACTIVEÚOPSLIMIT_INTERACTIVEÚ*crypto_pwhash_argon2i_MEMLIMIT_INTERACTIVEÚMEMLIMIT_INTERACTIVEÚ(crypto_pwhash_argon2i_OPSLIMIT_SENSITIVEÚOPSLIMIT_SENSITIVEÚ(crypto_pwhash_argon2i_MEMLIMIT_SENSITIVEÚMEMLIMIT_SENSITIVEÚ'crypto_pwhash_argon2i_OPSLIMIT_MODERATEÚOPSLIMIT_MODERATEÚ'crypto_pwhash_argon2i_MEMLIMIT_MODERATEÚMEMLIMIT_MODERATEÚencodingÚ
RawEncoderÚintÚbytesÚEncoderr   r   r   r   r   r   Ú<module>   sf   úÿþýüûú
ù>ýÿþýü