Your IP : 18.219.46.69


Current Path : /lib64/python3.6/__pycache__/
Upload File :
Current File : //lib64/python3.6/__pycache__/base64.cpython-36.opt-1.pyc

3


 \�O�@s�dZddlZddlZddlZddddddd	d
ddd
dddddddgZeefZdd�ZdCdd�Z	dDdd�Z
dd�Zdd�Zej
dd�Zej
dd�Zdd�Zdd�Zd Zdadad!d	�ZdEd"d
�Zd#d�ZdFd$d�Zdadad%Zd&ZdGd'd(�Zddddd)�d*d�Zddd+d,�d-d�Zd.Z da!da"da#dHd/d
�Z$d0d�Z%d1Z&e&d2d3Z'd4d�Z(d5d�Z)d6d7�Z*d8d�Z+d9d:�Z,d;d�Z-d<d=�Z.d>d?�Z/d@dA�Z0e1dBk�r�e/�dS)IzDBase16, Base32, Base64 (RFC 3548), Base85 and Ascii85 data encodings�N�encode�decode�encodebytes�decodebytes�	b64encode�	b64decode�	b32encode�	b32decode�	b16encode�	b16decode�	b85encode�	b85decode�	a85encode�	a85decode�standard_b64encode�standard_b64decode�urlsafe_b64encode�urlsafe_b64decodecCsxt|t�r2y
|jd�Stk
r0td��YnXt|t�r@|Syt|�j�Stk
rrtd|j	j
�d�YnXdS)N�asciiz4string argument should contain only ASCII charactersz>argument should be a bytes-like object or ASCII string, not %r)�
isinstance�strr�UnicodeEncodeError�
ValueError�bytes_types�
memoryview�tobytes�	TypeError�	__class__�__name__)�s�r �/usr/lib64/python3.6/base64.py�_bytes_from_decode_data"s


r"cCs,tj|dd�}|dk	r(|jtjd|��S|S)a*Encode the bytes-like object s using Base64 and return a bytes object.

    Optional altchars should be a byte string of length 2 which specifies an
    alternative alphabet for the '+' and '/' characters.  This allows an
    application to e.g. generate url or filesystem safe Base64 strings.
    F)�newlineNs+/)�binascii�
b2a_base64�	translate�bytes�	maketrans)r�altchars�encodedr r r!r3sFcCsPt|�}|dk	r*t|�}|jtj|d��}|rFtjd|�rFtjd��tj|�S)anDecode the Base64 encoded bytes-like object or ASCII string s.

    Optional altchars must be a bytes-like object or ASCII string of length 2
    which specifies the alternative alphabet used instead of the '+' and '/'
    characters.

    The result is returned as a bytes object.  A binascii.Error is raised if
    s is incorrectly padded.

    If validate is False (the default), characters that are neither in the
    normal base-64 alphabet nor the alternative alphabet are discarded prior
    to the padding check.  If validate is True, these non-alphabet characters
    in the input result in a binascii.Error.
    Ns+/s^[A-Za-z0-9+/]*={0,2}$zNon-base64 digit found)	r"r&r'r(�re�matchr$�Error�
a2b_base64)rr)Zvalidater r r!rAs
cCst|�S)zrEncode bytes-like object s using the standard Base64 alphabet.

    The result is returned as a bytes object.
    )r)rr r r!rZscCst|�S)aQDecode bytes encoded with the standard Base64 alphabet.

    Argument s is a bytes-like object or ASCII string to decode.  The result
    is returned as a bytes object.  A binascii.Error is raised if the input
    is incorrectly padded.  Characters that are not in the standard alphabet
    are discarded prior to the padding check.
    )r)rr r r!rass+/s-_cCst|�jt�S)z�Encode bytes using the URL- and filesystem-safe Base64 alphabet.

    Argument s is a bytes-like object to encode.  The result is returned as a
    bytes object.  The alphabet uses '-' instead of '+' and '_' instead of
    '/'.
    )rr&�_urlsafe_encode_translation)rr r r!roscCst|�}|jt�}t|�S)a�Decode bytes using the URL- and filesystem-safe Base64 alphabet.

    Argument s is a bytes-like object or ASCII string to decode.  The result
    is returned as a bytes object.  A binascii.Error is raised if the input
    is incorrectly padded.  Characters that are not in the URL-safe base-64
    alphabet, and are not a plus '+' or slash '/', are discarded prior to the
    padding check.

    The alphabet uses '-' instead of '+' and '_' instead of '/'.
    )r"r&�_urlsafe_decode_translationr)rr r r!rxs
s ABCDEFGHIJKLMNOPQRSTUVWXYZ234567csBtdkr,dd�tD���fdd��D�ad�t|t�sBt|�j�}t|�d}|rb|dd|}t�}tj	}t}xjt
dt|�d�D]V}||||d�d�}|||d	?||d
?d@||d?d@||d@7}q�W|d
kr�d|dd�<nF|dk�rd|dd�<n.|dk�r$d|dd�<n|dk�r:d|dd�<t|�S)zKEncode the bytes-like object s using Base32 and return a bytes object.
    NcSsg|]}t|f��qSr )r')�.0�ir r r!�
<listcomp>�szb32encode.<locals>.<listcomp>csg|]}�D]}||�qqSr r )r1�a�b)�b32tabr r!r3�s��r�big��i��
�s======��s====��s===�=i�������������)�_b32tab2�_b32alphabetrrrr�len�	bytearray�int�
from_bytes�ranger')r�leftoverr*rKZb32tab2r2�cr )r6r!r�s4
*


c

Cs�tdkrdd�tt�D�at|�}t|�dr8tjd��|dk	r^t|�}|jtj	dd|��}|rj|j
�}t|�}|jd�}|t|�}t�}t}x�t
d	t|�d�D]l}|||d�}d	}	y"x|D]}
|	d
>||
}	q�WWn tk
r�tjd�d�YnX||	jd
d�7}q�W|d�s(|dk�r2tjd��|�rz|�rz|	d
|K}	|	jd
d�}dd
|d}|d|�|dd�<t|�S)aZDecode the Base32 encoded bytes-like object or ASCII string s.

    Optional casefold is a flag specifying whether a lowercase alphabet is
    acceptable as input.  For security purposes, the default is False.

    RFC 3548 allows for optional mapping of the digit 0 (zero) to the
    letter O (oh), and for optional mapping of the digit 1 (one) to
    either the letter I (eye) or letter L (el).  The optional argument
    map01 when not None, specifies which letter the digit 1 should be
    mapped to (when map01 is not None, the digit 0 is always mapped to
    the letter O).  For security purposes the default is None, so that
    0 and 1 are not allowed in the input.

    The result is returned as a bytes object.  A binascii.Error is raised if
    the input is incorrectly padded or if there are non-alphabet
    characters present in the input.
    NcSsi|]\}}||�qSr r )r1�k�vr r r!�
<dictcomp>�szb32decode.<locals>.<dictcomp>�zIncorrect paddings01�OrBrr7zNon-base32 digit foundr9r=rAr@r>�+>rr=rAr@r>���)�_b32rev�	enumeraterGr"rHr$r-r&r'r(�upper�rstriprIrL�KeyError�to_bytes)
r�casefoldZmap01�lZpadchars�decodedZb32revr2Zquanta�accrNZlastrMr r r!r	�s@



cCstj|�j�S)zKEncode the bytes-like object s using Base16 and return a bytes object.
    )r$ZhexlifyrX)rr r r!r
�scCs4t|�}|r|j�}tjd|�r*tjd��tj|�S)a�Decode the Base16 encoded bytes-like object or ASCII string s.

    Optional casefold is a flag specifying whether a lowercase alphabet is
    acceptable as input.  For security purposes, the default is False.

    The result is returned as a bytes object.  A binascii.Error is raised if
    s is incorrectly padded or if there are non-alphabet characters present
    in the input.
    s	[^0-9A-F]zNon-base16 digit found)r"rXr+�searchr$r-Z	unhexlify)rr\r r r!r�s

s<~s~>c	s�t|t�st|�j�}t|�d}|r4|d|}tjdt|�d�j|�}����fdd�|D�}|r�|r�|ddkr��dd	|d<|d
d|�|d<d
j|�S)Nr@r8z!%dIcsRg|]J}�r|rdn6�r&|dkr&dn&�|d�|dd�|d�qS)�zi    �yi�^	�Ui9r )r1Zword)�chars�chars2�foldnuls�
foldspacesr r!r3!sz_85encode.<locals>.<listcomp>r=rarr7�rErErErE)	rrrrrH�struct�Struct�unpack�join)	r5rdre�padrfrg�paddingZwords�chunksr )rdrerfrgr!�	_85encodes

rp)rg�wrapcolrm�adobecs�tdkr*dd�tdd�D�add�tD�at|tt|d|��|rHt���r�t|rVdnd	�����fd
d�tdt����D�}|r�t|d�d�kr�|jd�d
j|��|r��t	7��S)a�Encode bytes-like object b using Ascii85 and return a bytes object.

    foldspaces is an optional flag that uses the special short sequence 'y'
    instead of 4 consecutive spaces (ASCII 0x20) as supported by 'btoa'. This
    feature is not supported by the "standard" Adobe encoding.

    wrapcol controls whether the output should have newline (b'\n') characters
    added to it. If this is non-zero, each output line will be at most this
    many characters long.

    pad controls whether the input is padded to a multiple of 4 before
    encoding. Note that the btoa implementation always pads.

    adobe controls whether the encoded byte sequence is framed with <~ and ~>,
    which is used by the Adobe implementation.
    NcSsg|]}t|f��qSr )r')r1r2r r r!r3Dsza85encode.<locals>.<listcomp>�!�vcSsg|]}tD]}||�qqSr )�	_a85chars)r1r4r5r r r!r3EsTr?r=csg|]}�||���qSr r )r1r2)�resultrqr r!r3Msrrh�
rE)
rurL�
_a85chars2rp�	_A85START�maxrH�appendrl�_A85END)r5rgrqrmrrror )rvrqr!r/s"

s 	

)rgrr�ignorecharscCs�t|�}|rH|jt�s$tdjt���|jt�r<|dd�}n|dd�}tjd�j	}g}|j
}g}|j
}|j}	�x|dD�]�}
d|
ko�dkn�r||
�t|�d	k�rrd}x|D]}
d
||
d}q�Wy|||��Wn"tj
k
�rtd�d�YnX|	�qz|
dk�r0|�r&td��|d�qz|�rX|
dk�rX|�rNtd��|d�qz|
|k�rfqzqztd|
��qzWdj|�}dt|�}
|
�r�|d|
�}|S)a�Decode the Ascii85 encoded bytes-like object or ASCII string b.

    foldspaces is a flag that specifies whether the 'y' short sequence should be
    accepted as shorthand for 4 consecutive spaces (ASCII 0x20). This feature is
    not supported by the "standard" Adobe encoding.

    adobe controls whether the input sequence is in Adobe Ascii85 format (i.e.
    is framed with <~ and ~>).

    ignorechars should be a byte string containing characters to ignore from the
    input. This should only contain whitespace characters, and by default
    contains all whitespace characters in ASCII.

    The result is returned as a bytes object.
    z1Ascii85 encoded byte sequences must end with {!r}r?Nz!I�ur@�!rr7rcrszAscii85 overflowrazz inside Ascii85 5-tuplesrbzy inside Ascii85 5-tuples    zNon-Ascii85 digit found: %crh���r�suuuurs�u�z�y)r"�endswithr|r�format�
startswithryrirj�packr{�clearrH�errorrl)r5rgrrr}�packIr^Zdecoded_appendZcurrZcurr_appendZ
curr_clear�xr_rvrnr r r!rXsV







sU0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz!#$%&()*+-;<=>?@^_`{|}~cCs2tdkr$dd�tD�add�tD�at|tt|�S)z�Encode bytes-like object b in base85 format and return a bytes object.

    If pad is true, the input is padded with b'\0' so its length is a multiple of
    4 bytes before encoding.
    NcSsg|]}t|f��qSr )r')r1r2r r r!r3�szb85encode.<locals>.<listcomp>cSsg|]}tD]}||�qqSr )�	_b85chars)r1r4r5r r r!r3�s)r��_b85alphabet�
_b85chars2rp)r5rmr r r!r�s	c
CsZtdkr0dgdaxtt�D]\}}|t|<qWt|�}t|�d}|d|}g}tjd�j}x�tdt|�d�D]�}|||d�}d}y"x|D]}|dt|}q�WWnJt	k
r�x2t|�D]&\}}t|dkr�t
d||�d�q�W�YnXy|j||��Wqttjk
�r2t
d	|�d�YqtXqtWd
j
|�}	|�rV|	d|�}	|	S)zqDecode the base85-encoded bytes-like object or ASCII string b

    The result is returned as a bytes object.
    N�r7�~z!Irrcz#bad base85 character at position %dz+base85 overflow in hunk starting at byte %drh)�_b85decrWr�r"rHrirjr�rLrrr{r�rl)
r5r2rNrn�outr��chunkr_�jrvr r r!r
�s<


�Lr@rAcCs`xZ|jt�}|sPx0t|�tkrB|jtt|��}|s8P||7}qWtj|�}|j|�qWdS)z1Encode a file; input and output are binary files.N)�read�
MAXBINSIZErHr$r%�write)�input�outputr�ns�liner r r!r�s

cCs,x&|j�}|sPtj|�}|j|�qWdS)z1Decode a file; input and output are binary files.N)�readliner$r.r�)r�r�r�rr r r!r�s
cCs�yt|�}Wn8tk
rD}zd|jj}t|�|�WYdd}~XnX|jdkrjd|j|jjf}t|��|jdkr�d|j|jjf}t|��dS)	Nz"expected bytes-like object, not %srNr5�Bz-expected single byte elements, not %r from %sr=z(expected 1-D data, not %d-D data from %s)rNr5r�)rrrrr��ndim)r�m�err�msgr r r!�_input_type_check�s

r�cCsPt|�g}x8tdt|�t�D]$}|||t�}|jtj|��qWdj|�S)zVEncode a bytestring into a bytes object containing multiple lines
    of base-64 data.rrh)r�rLrHr�r{r$r%rl)r�piecesr2r�r r r!rscCsddl}|jdtd�t|�S)zLegacy alias of encodebytes().rNzAencodestring() is a deprecated alias since 3.1, use encodebytes()r?)�warnings�warn�DeprecationWarningr)rr�r r r!�encodestringsr�cCst|�tj|�S)z8Decode a bytestring of base-64 data into a bytes object.)r�r$r.)rr r r!rscCsddl}|jdtd�t|�S)zLegacy alias of decodebytes().rNzHdecodestring() is a deprecated alias since Python 3.1, use decodebytes()r?)r�r�r�r)rr�r r r!�decodestring$sr�c	Csddl}ddl}y|j|jdd�d�\}}WnP|jk
r~}z2|j|_t|�td|jd�|jd�WYdd}~XnXt}xF|D]>\}}|dkr�t}|dkr�t	}|d	kr�t	}|d
kr�t
�dSq�W|o�|ddk�rt|dd��}|||jj�WdQRXn||j
j|jj�dS)
zSmall main programrNr=Zdeutz�usage: %s [-d|-e|-u|-t] [file|-]
        -d, -u: decode
        -e: encode (default)
        -t: encode and decode string 'Aladdin:open sesame'r?z-ez-dz-uz-t�-�rb)�sys�getopt�argvr��stderr�stdout�print�exitrr�test�open�buffer�stdin)	r�r�Zopts�argsr��func�or4�fr r r!�main.s0r�cCs<d}tt|��t|�}tt|��t|�}tt|��dS)NsAladdin:open sesame)r��reprrr)Zs0�s1�s2r r r!r�Hsr��__main__)N)NF)FN)F)FFF)F)2�__doc__r+rir$�__all__r'rIrr"rrrrr(r/r0rrrGrFrVrr	r
rrurxryr|rprrr�r�r�r�rr
ZMAXLINESIZEr�rrr�rr�rr�r�r�rr r r r!�<module>sh

	&
C

)H
-