
    Eh
                         d Z dZg dZddl ddlmZ ddlmc mZ eZ	 G d de      Z
d
d	Ze
j                  Ze
j                  Zy)a  MD2 cryptographic hash algorithm.

MD2 is specified in RFC1319_ and it produces the 128 bit digest of a message.

    >>> from Crypto.Hash import MD2
    >>>
    >>> h = MD2.new()
    >>> h.update(b'Hello')
    >>> print h.hexdigest()

MD2 stand for Message Digest version 2, and it was invented by Rivest in 1989.

This algorithm is both slow and insecure. Do not use it for new designs.

.. _RFC1319: http://tools.ietf.org/html/rfc1319
z$Id$)newdigest_sizeMD2Hash    )*)HashAlgoNc                   8    e Zd ZdZ ed      ZdZdZddZddZ	y)r   zIClass that implements an MD2 hash
    
    :undocumented: block_size
    u   *H÷   Nc                 :    t        j                  | t        |       y N)r   __init__hashFactoryselfdatas     P/var/www/html/bid_assistant/venv/lib/python3.12/site-packages/Crypto/Hash/MD2.pyr   zMD2Hash.__init__C   s    $T2    c                     t        |      S r   )r   r   s     r   r   zMD2Hash.newF   s    t}r   r   )
__name__
__module____qualname____doc__boidr   
block_sizer   r    r   r   r   r   0   s(     6
7CKJ3r   r   c                 4    t               j                  |       S )a  Return a fresh instance of the hash object.

    :Parameters:
       data : byte string
        The very first chunk of the message to hash.
        It is equivalent to an early call to `MD2Hash.update()`.
        Optional.

    :Return: An `MD2Hash` object
    )r   r   )r   s    r   r   r   I   s     9==r   r   )r   _revision____all__Crypto.Util.py3compatCrypto.Hash.hashalgor   Crypto.Hash._MD2Hash_MD2r   r   r   r   r   r   r   r   <module>r$      sR   *" 
, # )  h 2 !! 
r   