o
    -‚c~  ã                   @   sr   d Z ddlZddlZzddlZW n ey   dZY nw dZG dd„ deƒZddd„Zd	d
„ Z	dd„ Z
dd„ ZdS )zJThe match_hostname() function from Python 3.3.3, essential when using SSL.é    Nz3.5.0.1c                   @   s   e Zd ZdS )ÚCertificateErrorN)Ú__name__Ú
__module__Ú__qualname__© r   r   úCusr/lib/python3.10/site-packages/urllib3/util/ssl_match_hostname.pyr      s    r   é   c           
      C   sò   g }| sdS |   d¡}|d }|dd… }| d¡}||kr&tdt| ƒ ƒ‚|s0|  ¡ | ¡ kS |dkr:| d¡ n| d	¡sD| d	¡rM| t |¡¡ n| t |¡ 	d
d¡¡ |D ]
}| t |¡¡ q[t 
dd |¡ d tj¡}	|	 |¡S )zhMatching according to RFC 6125, section 6.4.3

    http://tools.ietf.org/html/rfc6125#section-6.4.3
    FÚ.r   r   NÚ*z,too many wildcards in certificate DNS name: z[^.]+zxn--z\*z[^.]*z\Az\.z\Z)ÚsplitÚcountr   ÚreprÚlowerÚappendÚ
startswithÚreÚescapeÚreplaceÚcompileÚjoinÚ
IGNORECASEÚmatch)
ZdnÚhostnameZmax_wildcardsZpatsÚpartsZleftmostÚ	remainderZ	wildcardsÚfragÚpatr   r   r   Ú_dnsname_match   s,   


ÿ
r   c                 C   s&   t | tƒrtjdk rt| ddd} | S )N)é   ÚasciiÚstrict)ÚencodingÚerrors)Ú
isinstanceÚstrÚsysÚversion_infoÚunicode)Úobjr   r   r   Ú_to_unicodeO   s   r)   c                 C   s   t  t| ƒ ¡ ¡}||kS )zˆExact matching of IP addresses.

    RFC 6125 explicitly doesn't define an algorithm for this
    (section 1.7.2 - "Out of Scope").
    )Ú	ipaddressÚ
ip_addressr)   Úrstrip)ZipnameÚhost_ipÚipr   r   r   Ú_ipaddress_matchV   s   r/   c              	   C   sf  | st dƒ‚z	t t|ƒ¡}W n tt fy   d}Y n ty,   tdu r)d}n‚ Y nw g }|  dd¡}|D ]/\}}|dkrQ|du rKt||ƒrK dS | |¡ q7|dkrf|durat	||ƒra dS | |¡ q7|s‹|  dd¡D ]}|D ]\}}|dkr‰t||ƒr„  dS | |¡ qsqot
|ƒd	krŸtd
|d tt|ƒ¡f ƒ‚t
|ƒd	kr¯td||d f ƒ‚tdƒ‚)a)  Verify that *cert* (in decoded format as returned by
    SSLSocket.getpeercert()) matches the *hostname*.  RFC 2818 and RFC 6125
    rules are followed, but IP addresses are not accepted for *hostname*.

    CertificateError is raised on failure. On success, the function
    returns nothing.
    ztempty or no certificate, match_hostname needs a SSL socket or SSL context with either CERT_OPTIONAL or CERT_REQUIREDNZsubjectAltNamer   ZDNSz
IP AddressÚsubjectZ
commonNamer   z&hostname %r doesn't match either of %sz, zhostname %r doesn't match %rr   z=no appropriate commonName or subjectAltName fields were found)Ú
ValueErrorr*   r+   r)   ÚUnicodeErrorÚAttributeErrorÚgetr   r   r/   Úlenr   r   Úmapr   )Zcertr   r-   ZdnsnamesZsanÚkeyÚvalueÚsubr   r   r   Úmatch_hostnameb   s\   ÿþý
€

€úÿÿÿr:   )r   )Ú__doc__r   r%   r*   ÚImportErrorÚ__version__r1   r   r   r)   r/   r:   r   r   r   r   Ú<module>   s    ÿ
6